Having troubles understanding insertion sort, anyone have any good code examples or websites showing algorithms? Can't find any good examples from google.
feedback
|
closed as not a real question by Cory, larsmans, Jens Gustedt, Gazler, Book Of Zeus Nov 7 '11 at 3:06
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Find a friend who does Software Engineering and Its Practice from (NIIT) will give you the book. if you dont find one, contact me i will try to help. | |||
|
feedback
|
|
You're probably having trouble finding insertion sort for linked lists in part because there's very little to do: scan through your linked list until you find an element that's greater than your current element (or you reach the end of the list) -- then insert. A long list of working insertion sort examples can be found at rosetta code -- each using a convenient data structure for each language -- note the repeated | ||||
|
feedback
|