- 1
What is bubble sort
3 ответов
+ 9
Well you can find many examples online, here's an interesting one:-
https://www.youtube.com/watch?v=MtcrEhrt_K0
+ 4
An algorithm used to sort an array or collection.
+ 2
Array Sorting Algorithm. He takes the first number of array and compares it with the following numbers, and swaps his position if its value is greater than value of next number. If next number is greater than current number, it stops and repeats from beginning until array is sorted.