Last active
August 29, 2021 10:21
-
-
Save ravindraranwala/acb603412afe6a840243e69783e861d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class K_WayMerge { | |
private K_WayMerge() { | |
throw new AssertionError(); | |
} | |
public static void main(String[] args) { | |
final Integer[] sortedOne = { 2, 7, 16 }; | |
final Integer[] sortedTwo = { 5, 10, 20 }; | |
final Integer[] sortedThree = { 3, 6, 21 }; | |
final Integer[] sortedFour = { 4, 8, 9 }; | |
final Integer[] mergedData = kWayMerge(Integer.class, sortedOne, sortedTwo, sortedThree, sortedFour); | |
System.out.println(Arrays.toString(mergedData)); | |
} | |
public static <T> T[] kWayMerge(Comparator<? super T> cmp, Class<T> clazz, T[]... sortedLists) { | |
final Queue<Map.Entry<T, Iterator<T>>> queue = PriorityQueue.of(Map.Entry.comparingByKey(cmp), | |
sortedLists.length); | |
int n = 0; | |
for (T[] a : sortedLists) { | |
final Iterator<T> it = Arrays.asList(a).iterator(); | |
if (it.hasNext()) | |
queue.insert(new AbstractMap.SimpleEntry<>(it.next(), it)); | |
n += a.length; | |
} | |
@SuppressWarnings("unchecked") | |
final T[] sortedData = (T[]) Array.newInstance(clazz, n); | |
for (int count = 0; !queue.isEmpty(); count++) { | |
final Map.Entry<T, Iterator<T>> entry = queue.extract(); | |
sortedData[count] = entry.getKey(); | |
final Iterator<T> it = entry.getValue(); | |
if (it.hasNext()) | |
queue.insert(new AbstractMap.SimpleEntry<>(it.next(), it)); | |
} | |
return sortedData; | |
} | |
public static <T extends Comparable<? super T>> T[] kWayMerge(Class<T> clazz, T[]... sortedLists) { | |
return kWayMerge(Comparator.naturalOrder(), clazz, sortedLists); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment