Basic linkedlist merge algorithm. Merges the lists head by fst and snd with respect to cmp
param: fst head of the first list param: snd head of the second list param: cmp a Comparator used to compare elements
the merged ordered list
See Implementation
Basic linkedlist merge algorithm. Merges the lists head by fst and snd with respect to cmp
param: fst head of the first list param: snd head of the second list param: cmp a Comparator used to compare elements