Php join array quick sorting method, php join array _ PHP Tutorial

Source: Internet
Author: User
Php join array quick sorting method, php join array. Php join array quick sorting method. php join array This article describes the php join array quick sorting method. Share it with you for your reference. The specific method is as follows: phpfunctionqso php associates with arrays for fast sorting. php associates with arrays.

This article describes how to quickly sort php associated arrays. Share it with you for your reference. The details are as follows:

<?php function qsort($a,$f) { qsort_do(&$a,0,Count($a)-1,$f); } function qsort_do($a,$l,$r,$f) { if ($l < $r) {   qsort_partition(&$a,$l,$r,&$lp,&$rp,$f);   qsort_do(&$a,$l,$lp,$f);   qsort_do(&$a,$rp,$r,$f);  } } function qsort_partition($a,$l,$r,$lp,$rp,$f) { $i = $l+1; $j = $l+1;  while ($j <= $r) {   if ($f($a[$j],$a[$l])) {    $tmp = $a[$j];    $a[$j] = $a[$i];    $a[$i] = $tmp;    $i++;   }   $j++; } $x = $a[$l]; $a[$l] = $a[$i-1]; $a[$i-1] = $x; $lp = $i - 2; $rp = $i;}?>

I hope this article will help you with php programming.

Examples in this article describes how to quickly sort php associated arrays. Share it with you for your reference. Details: php function qso...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.