Where can I get a sample code for merge sort a link list?

link|improve this question
3  
Is this homework? – jmucchiello Nov 14 '09 at 6:37
singly-linked or doubly-linked list? – Bill Nov 14 '09 at 22:25
This should be tagged as homework ! – whacko__Cracko Nov 24 '09 at 23:18
feedback

2 Answers

Here. (Courtesy of Google)

link|improve this answer
This was for doubly link list : struct element { element *next, *prev; int i;}; – John Nov 14 '09 at 6:10
feedback

Here's a description of how to implement it.

link|improve this answer
The code linked by jtbandes is on the same page... – Eli Bendersky Nov 14 '09 at 6:42
feedback

Your Answer

 
or
required, but never shown

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