What is Bubble sort exactly is ?
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnMKdS03-ztThzS8g1IxV_0-yE3ynK1M0lWPJBw8z8ck7VgFu8GaPdcW9SccrOTQuk_9mUSml_G1q_GSVHLeyi6fE0JVyAOE3DDi-UYPagL5iU5yZJB_J5-8xt36TnZinQh8nDyQThkLI/s400/carbon.png)
Bubble sort algorithm Bubble sort is a very simple and very easy to implement sorting technique Default arrange in ascending order logic let's take an example, an example, we have a list of numbers stored in array logic start with comparison of first two element and if the left element is greater than right element they swap their position Comparison proceeds till the end of array logical illustration ALGORITHM Modified ALGORITHM :- Bubble_Sort(A,N): A is array of values and N is the number of element Repeat step 2,3,&4 for round =1,2,3,....