This document proposes enhancements to selection sort and bubble sort algorithms. It describes an enhanced selection sort (ESS) that finds the maximum element and swaps it with the last element on each pass, reducing swap operations. An enhanced bubble sort (EBS) finds the minimum and maximum on each pass, swapping them with the first and last elements respectively. The algorithms are analyzed and applied to sort student records, showing ESS and EBS improve on standard selection and bubble sorts, and increase efficiency over shell sort variants.