RHRick Hanleyinbytehard.hashnode.dev·Feb 6, 2025 · 6 min readBubble SortThere’s a beauty to this little algorithm. I learnt a ton from it. It helped me grasp the nature of nested loops and how to be careful about accessing a loop within its bounds.I still screw up with loops all the time but this process gave me some goo...00
RHRick Hanleyinbytehard.hashnode.dev·Feb 6, 2025 · 5 min readSelection SortSelection sort uses nested loops as you might expect but the management of them is a little more complex than bubble sort. As it runs, selection sort places the lowest element in the array in the correct (leftmost) location of the array on each itera...00