What sorting algorithm does qsort use?

后端 未结 3 1468
遇见更好的自我
遇见更好的自我 2021-01-17 21:48

I can\'t find any information regarding what sorting algorithm C qsort function uses.

Is it quicksort? It is not mentioned in man.

3条回答
  •  无人及你
    2021-01-17 22:45

    In complement to James McNellis’s quotation of the standard it is worth noting that GNU’s libc documentation says that

    The qsort function derives its name from the fact that it was originally implemented using the “quick sort” algorithm.

    and that it decided to use an alternative algorithm, apparently a merge sort.

提交回复
热议问题