vote up 1 vote down star

I was recently brushing up on some fundamentals and found merge sorting a linked list to be a pretty good challenge. If you have a good implementation then show it off here.

flag

7 Answers

vote up -1 vote down

Take a peek at this implementation of a merge sort. Hope this helps.

link|flag
This clearly merge sorts an array.. – Amit Sep 4 at 5:49
vote up 0 vote down

You can use that implementation of merge sort and write your own functions to interface with the linked list as if it were an array.

link|flag
vote up 2 vote down

One interesting way is to maintain a stack, and only merge if the list on the stack has the same number of elements, and otherwise push the list, until you run out of elements in the incoming list, and then merge up the stack.

link|flag
vote up 1 vote down

The simplest is from Gonnet + Baeza Yates Handbook of Algorithms. You call it with the number of sorted elements you want, which recursively gets bisected until it reaches a request for a size one list which you then just peel off the front of the original list. These all get merged up into a full sized sorted list.

[Note that the cool stack-based one in the first post is called the Online Mergesort and it gets the tiniest mention in an exercise in Knuth Vol 3]

link|flag
vote up 0 vote down

A simple, quick and "it works" way is to copy the linked list elements into a array, sort it and then re-create the linked list back. However, such a solution won't work straight away if you have got for than one member in your node, such as:

struct node {
   int data1;
   int data2;
   struct node *next;
};

This one works for me: http://bitbucket.org/amitksaha/foobar-scripts/src/f732216b9649/merge-sort-struct.c

link|flag
vote up 0 vote down

look at: http://www.sorting-algorithms.com/merge-sort

link|flag
vote up 0 vote down

A recursive version is straight-forward. I'm currently working on an iterative one, but it's still buggy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.