Write programs for Bubble Sort, Quick sort

Answers were Sorted based on User's Feedback



Write programs for Bubble Sort, Quick sort..

Answer / vinay gupta

write programs for insertion sort

Is This Answer Correct ?    4 Yes 3 No

Write programs for Bubble Sort, Quick sort..

Answer / nuyer

2
3
4
4
5
6
4
34
5
45
345
45


42
5
5

5

532
5
345
34
53
5
35
34
534
5
345
34
534
5
35
35
534
346
45
654
654
6
456
45
6
6
546
45
64
56
456
4
6

Is This Answer Correct ?    1 Yes 0 No

Write programs for Bubble Sort, Quick sort..

Answer / ganga

all the above programs are wrong!!!

heres a perfect one.. simple logic!

for(i=0;i<n-1;i++)
for(j=i+1;j<n;j++)
{
if(a[i]>a[j])
{
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
// now print the elements n see

Is This Answer Correct ?    1 Yes 0 No

Write programs for Bubble Sort, Quick sort..

Answer / giftson d

@Babbu
Thn wat is t answer, Pls explain...

Is This Answer Correct ?    0 Yes 0 No

Write programs for Bubble Sort, Quick sort..

Answer / lukesh

parul

Is This Answer Correct ?    16 Yes 21 No

Post New Answer

More Data Structures Interview Questions

What are threaded binary trees?

0 Answers  


Explain what are the methods available in storing sequential files ?

0 Answers  


What is the need of sorting?

0 Answers  


What is faster array or arraylist?

0 Answers  


How does arraylist size work?

0 Answers  






Does treemap sort automatically?

0 Answers  


Where will be the free node available while inserting a new node in a linked list?

0 Answers  


applications of linked lists and mostly used linked list?

3 Answers  


What are the disadvantages of linear list?

0 Answers  


What is harvesting in agriculture?

0 Answers  


What is the difference between list, set and map?

0 Answers  


What is a b+ tree? Explain its uses.

0 Answers  


Categories