/Basic_Sorting_Algorithms

Visualization of sorting algorithms in C++

Primary LanguageC++

Basic_Sorting_Algorithms📊

Visualization of sorting algorithms in C++ using SFML graphics library

Libraries 📚

Bubble Sort ⚪

Bubble sort is an algorithm that compares the adjacent elements and swaps their positions if they are not in the intended order. The order can be ascending or descending.

Selection Sort ⛏

Selection sort is an algorithm that selects the smallest element from an unsorted list in each iteration and places that element at the beginning of the unsorted list.

Insertion Sort 🔽

Insertion sort is a sorting algorithm that places an unsorted element at its suitable place in each iteration.