Sorting Algorithm :: Bubble Sort & Selection Sort & Insertion Sort
bubble sort, values go up like a bubble
Bubble Sort Pseudocode
Start looping from with a variable called i the end of the array towards the beginning
Start an inner loop with a variable called j from the beginning until i - 1
If arr[j] is greater ...
seongjin.hashnode.dev2 min read