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

Is quicksort greedy algorithm?

0 Answers  


When is a binary search best applied?

0 Answers  


Is hashmap faster than arraylist?

0 Answers  


Can you make an arraylist of arrays?

0 Answers  


What is difference between array and arraylist? When will you use array over arraylist?

0 Answers  


Is array faster than arraylist?

0 Answers  


Explain implementation of deletion from a binary tree.

0 Answers  


What happens in insertion sort?

0 Answers  


Is it necessary to sort a file before searching a particular item ?

0 Answers  


Is a list an array?

0 Answers  


What is the difference between classifying and sorting?

0 Answers  


What is meant by int?

0 Answers  


Categories