The document describes several sorting and selection algorithms, including insertion sort, partition, quicksort, random quicksort, counting sort, radix sort, and random select. Insertion sort works by inserting each element into the sorted portion of the array, partition divides the array around a pivot element, and quicksort uses partition to recursively sort subarrays.