Codes for exploring concepts in computer science
Iterate over elements in an array. If the current element's neighbor on the right is smaller, then swap them.
Double loop over the array, placing the lowest remaining element into position.
Locate the position of a specified element in a sorted array by iteratively dividing the list in half.