What is Bubble Sort

Опубликовано: 16 Ноябрь 2024
на канале: Full Stack MoJo
2,332
13

In this video we will look at bubble sort. we will answer some basic questions like:

What is sorting?
What does sorted mean?
Bubble Sort example with illustration
bubble sort code in java
Bubble Sort Space and Time Complexity


Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity is quite high.

#sorting #sortingalgorithm #dsa #bubblesort