what is






 

Question by  Anonymous

what is quicksort?

 
+6

Answer by  arrakaij (24)

Quicksort is a recursive sorting algorithm following the 'divide et impera' scheme. it takes an element (token) of the list that is to sort and transfers every element that smaller on the one side and everything that is bigger on the other. for the whole list, the algorithm is used on the two parts again until the list is sorted.

 
+4

Answer by  infodestinyscribescom (7)

Quick Sort is a sorting algorithm which is easier, used to code and implement. It is a recursive algorithm that uses the divide and conquer method. It is also the fastest generic sorting algorithm in practice.

 
You have 50 words left!