Which of the following sorts is quickest when sorting the
following set: 1 2 3 5 4
1) Quick Sort
2) Bubble Sort
3) Merge Sort
Answer Posted / k.kavitha
1) Quick sort
| Is This Answer Correct ? | 25 Yes | 2 No |
Post New Answer View All Answers
What is void c?
What is const keyword in c?
What is the explanation for the dangling pointer in c?
How to create struct variables?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
write a program fibonacci series and palindrome program in c
What is c programming structure?
What are the benefits of c language?
What is the difference between array and linked list in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Why do we need volatile in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is a protocol in c?
What does *p++ do? What does it point to?
Explain the use of fflush() function?