Quicksort using Javascript
- Divide: Break problem down during each call
- Conquer: Do work on each subset
- Combine: none
Coding explanation
- Choose a pivot point
- Rearrange all elements greater than pivot point to the right
- Rearrange all elements lesser than pivot point to the left
- Recursively apply above steps to the sub arrays on either side of the point