ALGORITHM TO SORT ARRAY USING QUICK SORT

1. low =1, high = h, key a[(l+h)/2] 2. Repeat through step 7 while (low <= high) 3. Repeat step 4 while (a[low] < key) 4. low = low +1 5. Repeat step 6 while (a[high] > key) 6. high = high- 1 7. If (low <= high) a) temp = a[low] b) a[low] = [...]