Which sorting algorithm is the best?



Which sorting algorithm is the best?..

Answer / glibwaresoftsolutions

Bubble sort, fast sort, balloon sort, merge sort, radix sort, and more are examples of the various kinds of sorting algorithms.
Since each algorithm was created for a certain kind of data structure where it works best, none of them can be regarded as the best or fastest.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what r the cpu registers r ther?

1 Answers  


How can I read in an object file and jump to locations in it?

0 Answers  


Is that possible to store 32768 in an int data type variable?

0 Answers  


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;

7 Answers  






What are global variables and how do you declare them?

0 Answers  


C program to find frequency of each character in a text file?

6 Answers  


Which control loop is recommended if you have to execute set of statements for fixed number of times?

0 Answers  


Why can arithmetic operations not be performed on void pointers?

0 Answers  


What is the diffences between Windows XP and Windows Visa

1 Answers   Aricent, FHF,


What are the advantages of the functions?

0 Answers  


In which category does main function belong??

5 Answers  


Categories