What are some simple, yet efficient sorting techniques (not bubble sort)

Started by
20 comments, last by cpp_boy 19 years, 5 months ago
Some demos of sorting algorithms. Fun to watch AND!! you can see the relative speeds of the algorithms on a random input.

http://www.cs.ubc.ca/spider/harrison/Java/sorting-demo.html
Advertisement
I think quick-sort will do , its performence is O(n log n), what is considered as a fast one.

This topic is closed to new replies.

Advertisement