What sort algorithm does PHP use?

后端 未结 3 350
刺人心
刺人心 2020-12-05 17:22

Internally speaking, which algorithm(s) does PHP use to implement the various sort functions it offers? It seems like the usort variants might use a different algorithm than

3条回答
  •  Happy的楠姐
    2020-12-05 18:12

    You could find the information by looking at the php manual. http://php.net/sort says PHP uses an implementation of Quicksort. Failing that, you could always trudge through the PHP source code itself.

提交回复
热议问题