Analysis
Merge algorithms generally run in time proportional to the sum of the lengths of the lists; merge algorithms that operate on large numbers of lists at once will multiply the sum of the lengths of the lists by the time to figure out which of the pointers points to the lowest item, which can be accomplished with a heap-based priority queue in O(log n) time, for O(m log n) time, where n is the number of lists being merged and m is the sum of the lengths of the lists. When merging two lists of length m, there is a lower bound of 2m − 1 comparisons required in the worst case.
The classic merge (the one used in merge sort) outputs the data item with the lowest key at each step; given some sorted lists, it produces a sorted list containing all the elements in any of the input lists, and it does so in time proportional to the sum of the lengths of the input lists.
[edit]Language support
The C++'s Standard Template Library has the function std::merge
, which merges two sorted ranges of iterators, and std::inplace_merge
, which merges two consecutive sorted ranges in-place. In addition, thestd::list
(linked list) class has its own merge
method which merges another list into itself. The type of the elements merged must support the less-than (<) operator, or it must be provided with a custom comparator.
Python (programming language)'s standard library (since 2.6) also has a merge()
function in the heapq
module, that takes multiple sorted iterables, and merges them into a single iterator.[1]
--
No comments:
Post a Comment