What is simplest sorting method to utilize in data structure

What is the simplest sorting method to utilize in data structures?

E

Expert

Verified

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

•T his is already written.
• This is already debugged.
• This has been optimized so much as possible (frequently).

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

   Related Questions in Database Management System

©TutorsGlobe All rights reserved 2022-2023.