Algorithm Tutorials – Visual Only

Have you taken Algorithms yet? Most professors want to make the topic seem as difficult as possible. Let’s step back and look at Algorithms visually. I promise it will make perfect sense. Algorithms Simply Explained focuses on the top algorithms that you would study at most universities.

Bubble Sort

The Bubble Sort algorithm sorts an array of items in increasing order. It steps through the array and compares the adjacent elements. If they are not sorted, it swaps them. It then keeps repeating the procedure until the array is fully sorted.

Dino Cajic explaining Bubble Sort Algorithm

Starter Algorithm

This is usually the first Algorithm that you learn