AI Features

Selection Sort

In this lesson, we'll cover how selection sort works and see its implementation.

We'll cover the following...

Selection sort

Maintain two parts of the array, sorted and unsorted parts. Starting with the sorted part being empty and the unsorted part being A[0..N1]A[0..N-1] ...