Merge algorithm Guide, Meaning , Facts, Information and Description
Merge algorithms are a family of algorithms that run sequentially over multiple sorted lists, typically producing more sorted lists as output. This is well-suited for machines with tape drives. Use has declined due to large random access memories, and many applications of merge algorithms have faster alternatives when you have a random-access memory that holds all your data.
The general merge algorithm has a set of pointers p0..n that point to positions in a set of lists L0..n. Initially they point to the first item in each list. The algorithm is as follows:
While any of p0..n still point to data inside of L0..n instead of past the end:
- do something with the data items p0..n point to in their respective lists
- find out which of those pointers points to the item with the lowest key; advance one of those pointers to the next item in its list
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(lg n) time, for O(m lg n) time (where m is the sum of the lengths of the lists, and lg is log base 2).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.
This is an Article on Merge algorithm. Page Contains Information, Facts Details or Explanation Guide About Merge algorithm Uses
Merge can also be used for a variety of other things:
Sample implementations
FL
merge
Haskell
merge :: Ord a => [a]->[a]->[a]
merge a [] = a
merge [] b = b
merge (a:as) (b:bs)
| a <= b = a : merge as (b:bs)
| otherwise = b : merge (a:as) bs
Python
def merge(a, b):
if len(a) == 0: return b
if len(b) == 0: return a
if a[0] <= b[0]: return a[0:1] + merge(a[1:], b)
else: return b[0:1] + merge(a, b[1:])
C
/* note: uses C99 features such as variable-length arrays */
void merge (float v[], int start, int mid, int end) {
int i, j, k;
float tmp[end-start];
i = start;
j = mid;
k = 0;
while ((i < mid) && (j < end)){
if (v[i] <= v[j])
tmp[k++] = v[i++];
else
tmp[k++] = v[j++];
}
while (i < mid) tmp[k++] = v[i++];
while (j < end) tmp[k++] = v[j++];
for (i = 0; i < (end-start); i++) v[start+i] = tmp[i];
}
