I have to make a type of linked-list that stores ints in order from smallest to largest. If you have or know how to make a sorting function for linked-lists please show if off here and / or teach me how to code it in C++.
|
|
I often sort linked lists via an index-pointer-list. To build one requires a memory allocation equivalent to the number of nodes (N) * the size of a node pointer. The concept is simple enough. Note: this algorithm is in C, as I was not entirely sure if the OP meant to class this as a C++ question (who the hell uses linked lists in C++ with the standard containers at your disposal??)
Your linked list is sorted. Assuming your node is something like this:
Determine the number of nodes in your list. I'm assuming you have a proc that can do this, which is trivial:
Allocate a pointer array the size of the list, where nItems is the list node count greater than 1 (no sense in bothering with a list of length zero or one):
Populate the pointer array with all the items in the list:
Now send this to
Invoking qsort() looks like this:
Now walk the entire list. rewiring "next" pointers:
Rewire the head pointer.
And finally, free the pointer array.
Your linked list is sorted. Sidebar merge-sort is the only O(nlogn) algorithm I know of that can sort a linked list with no added space requirements. A general solution that prototypes to the following would be nutz:
|
||||
|
If we simply show you the code we will be doing you a great disservice. I will give you, instead, two different approaches and you can implement the one that you prefer. The first approach is to "sort" as you insert: when you are inserting a value, say, 7, you follow this procedure starting with the first entry in your list until you run out of nodes: If the node you are examining has a value that is greater than 7 you insert a new node before the node you are examining and return. Otherwise you look at the next node. If there is no next node, the. You insert a new node at the end of the list since that means that 7 is larger than al other entries in the list and return. A second alternative is to sort the entire list using one of the many sorting algorithms. I would suggest that you use BubbleSort since it's easy to understand and implement. You can read more about bubblesort (ans many other sorting algorithms) on Wikipedia. |
|||
|
|
|
Good old quicksort will do the trick (C++03 friendly):
Check: http://ideone.com/OOGXSp |
|||||
|
