Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


simple algorithm for bubble sort?



simple algorithm for bubble sort?..

Answer / siri

void bubble(int x[],int n)
{
int hold,j,pass;
int switched=true;
for(pass=0;pass<n-1&&switched=true;pass++){
switched=false;
for(j=0;j<n-pass-1;j++)
if(x[j]>x[j+1]){
switched=true;
hold=x[j];
x[j]=x[j+1];
x[j+1]=hold;
}
}
}

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More Data Structures Interview Questions

What do you mean by probing?

0 Answers  


What's the difference between an array and vector?

0 Answers  


Define path in a graph?

0 Answers  


Define adjacent nodes?

0 Answers  


What is arraylist load factor?

0 Answers  


Define b-tree of order m?

0 Answers  


What is difference between array and string?

0 Answers  


What are the disadvantages of linked list?

0 Answers  


Which is better than array and linked list?

0 Answers  


What are the goals of data structure?

0 Answers  


Which sorting algorithm uses minimum number of swaps?

0 Answers  


How would you swap the Kth node from beginning with Kth node from end in a Linked List.

0 Answers   DELL,


Categories