What is the differnce between bubble and selection sort as both are doing same work?

what is the difference between bubble and selection sort as both are doing same work ?

Both are sorting algorithms.Bubble sort is a simple sorting algorithm that continuously steps through the list and compares the adjacent pairs to sort the elements. In contrast, selection sort is a sorting algorithm that takes the smallest value (considering ascending order) in the list and moves it to the proper position in the array.

1 Like