Easiest sorting method

Which is the easiest sorting method to use?

E

Expert

Verified

The answer is standard library function qsort(). It's the easiest sort by far for many reasons:

It is already written.

It is already debugged.

It has been optimized as much as probable

Void qsort(void *buf, size_t num, size_t size, int (*comp)(const void *ele1, const void *ele2));

   Related Questions in Data Structure & Algorithms

©TutorsGlobe All rights reserved 2022-2023.