Which algorithm used is by sort function in PHP? -
this question has answer here:
- which sort algorithms php's usort apply? 2 answers
i want know algorithm use sort array knowledge. $arr=array(50,60,40,70,30); sort($arr); thank in advance.
php uses implementation of quicksort..you can try quicksort.
Comments
Post a Comment