I see this tag is popular here, so please explain me for example Bubble Sort Algorithm like I`m five :)
For further actions, you may consider blocking this person and/or reporting abuse
I see this tag is popular here, so please explain me for example Bubble Sort Algorithm like I`m five :)
For further actions, you may consider blocking this person and/or reporting abuse
Nijeesh Joshy -
Vinicius Brasil -
Sloan the DEV Moderator -
Stefan -
Once suspended, r0073rr0r will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, r0073rr0r will be able to comment and publish posts again.
Once unpublished, all posts by r0073rr0r will become hidden and only accessible to themselves.
If r0073rr0r is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Велимир Мајсторов.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag r0073rr0r:
Unflagging r0073rr0r will restore default visibility to their posts.
Top comments (3)
Say you were given a list of 6 numbers and you wanted to sort them from least to greatest. The list looks like this:
1 4 5 2 3 6
With Bubble Sort, you start from the beginning (the left in this case), and you put a "bubble" around the first two indices and sort, like so:
[1 4] 5 2 3 6
Since 1 < 4 (which is what we want), you move the "bubble" one index to the right.
1 [4 5] 2 3 6
...and so on and so forth...
1 4 [5 2] 3 6
At this point, 5 > 2, so those two would be swapped
1 4 [2 5] 3 6
1 4 2 [5 3] 6; 5 > 3 so we swap.
1 4 2 [3 5] 6
1 4 2 3 [5 6]
Then we start over at the beginning, and repeat until no further swaps are needed, i.e., until the list is sorted from least to greatest.
Here's an awesome explanation: dev.to/vaidehijoshi/bubbling-up-wi...
Bubblesort stinks
Learn Quicksort instead