Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

BubbleSort needs optimization for best-case scenario

Open wassim31 opened this issue 2 years ago • 1 comments

in bubblesort.c , the program needs improvement , for best case scenario where the array is sorted , we don't need to process each element again. So from O(n²) we gonna have O(n) time complexity. Also , it needs a lot of code design improvement.

wassim31 avatar Aug 02 '21 15:08 wassim31

can I do this ?

Gaurav12477 avatar Oct 13 '22 12:10 Gaurav12477