Le 01/09/2021 à 03:58, Micah Kornfield a écrit :
According to Wikipedia there is a min-heap approach that is O(N log k) not
sure if this matches with Niranda's proposal [1]. On the surface the
analysis make sense to me but I could be missing something.
[1] https://en.m.wikipedia.org/wiki/K-wa
According to Wikipedia there is a min-heap approach that is O(N log k) not
sure if this matches with Niranda's proposal [1]. On the surface the
analysis make sense to me but I could be missing something.
[1] https://en.m.wikipedia.org/wiki/K-way_merge_algorithm
On Tuesday, August 31, 2021, Antoi
On Tue, 31 Aug 2021 17:47:02 -0400
Niranda Perera wrote:
> @antoine thanks for the heads up.
> This was the example. I want to merge this table into a final table
> +---+--+---+
> | Table 0 | | Table 1 |
> +---+---+---+ +---+---+---+
> | | A | B | | | A | B |
> +---+---+
@antoine thanks for the heads up.
This was the example. I want to merge this table into a final table
+---+--+---+
| Table 0 | | Table 1 |
+---+---+---+ +---+---+---+
| | A | B | | | A | B |
+---+---+---+ +---+---+---+
| 0 | 3 | x | | 0 | 1 | x |
+---+---+---+ +---+---
Hi Niranda,
Le 31/08/2021 à 18:09, Niranda Perera a écrit :
Hi all,
Is there an efficient way to merge a set of sorted tables/ record batches
(like in the merge step of a merge sort)?
Ex: Simplest case would be to merge these 2 tables, based on A
The formatting of your example looks broken,