FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » General » HTML, Javascript, jQuery & AJAX » Which code block is using bubble sort?
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Which code block is using bubble sort? [message #187952] Tue, 15 September 2020 14:42 Go to previous message
pixielott is currently offline  pixielott
Messages: 1
Registered: September 2020
Karma:
Junior Member
Hey,

Which one from the below code blocks is using bubble sort:

1)
for(int i=0;i<n-1;i++)
  for(int j=n-1; j>i;j--)
    if(a[j] < a[j-1])
        swap(a[j], a[j-1]);
2)
for(int i=0; i<n-1; i++)
  for(int j=i+1; j<n; j++)
    if(a[j] < a[i])
        swap(a[j],a[i]);
3)

int temp, i, j = 0;
    boolean swaped = true;

    while (swaped) {
        swaped = false;
        j++;
        for(i = 0; i < arr.length - j; i++){
            if(arr[i] > arr[i+1]){
                temp = arr[i];
                arr[i] = arr[i+1];
                arr[i+1] = temp;
                swaped = true;
            }
        }
    }
I guess,the first is bubble sort, not sure of the second and third.



[Message index]
 
Read Message
Read Message
Previous Topic: What is the best HTML Editor?
Next Topic: How to call server side function from javascript
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Apr 20 07:17:35 GMT 2024

Total time taken to generate the page: 0.04917 seconds