Sort
Last updated
Last updated
The simplest sorting algorithm, it's a algorithm. Basically starts at first DS position and checks if it is greater than the next one, and keeps repeating this process until it is done.
It's a algorithm. It takes a pivot
value that usually is in the middle of the DS, and sorts every value smaller or equal than the pivot to it's left and every value greater to the right.