Sunday, January 17, 2010

Quick Sort

An animated image demonstrating the Quick sort algorithm used to sort a list of items in computer programming. First, a pivot is selected from the list, then the list is partitioned so that the values greater than the pivot come after it and those of lower value come before it. This act is recursively performed until the entire list is sorted.

No comments: