Avanade interview question

Describe a quick sort.

Interview Answers

Anonymous

May 22, 2012

Choose an element as the pivot. Sort the list into 2 groups, a less than and a greater than group. Recursively do the same thing for the 2 groups.

2

Anonymous

Apr 10, 2011

Kind of only describe a general sort.

1