Having troubles understanding insertion sort, anyone have any good code examples or websites showing algorithms? Can't find any good examples from google.

link|improve this question
2  
1  
Did you maybe try Googling... "insertion sort"? First result: en.wikipedia.org/wiki/Insertion_sort which provides a great explanation and pseudocode, which is easy enough to convert. This isn't a "give me the code" website. – minitech Nov 6 '11 at 23:01
Give us something about what data type you're using (arrays? linked lists? doubly linked lists?) and some code showing what kind of attempts you've made, and you'll probably get more useful answers. – Aaron Dufour Nov 7 '11 at 1:14
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.

2 Answers

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.

link|improve this answer
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 A[k] == A[k+1] in the imperative languages, and realize you get to skip that step completely for linked lists.

link|improve this answer
feedback

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