PHP easy to implement bubble sort tutorial

Source: Internet
Author: User
Tags strcmp

The example in this article describes a simple way to implement a bubble sort in PHP. Share to everyone for your reference, specific as follows:

<?php
$files =array ("File11.txt", "File22.txt", "file1.txt", "file2.txt");
Functionmysort ($arr, $nat =false) {
for ($i =0; $i <count ($arr); $i + +) {
For ($j =0 $j <count ($arr)-$i-1; $j + +) {
if ($nat) {
According to STRNATCMP () natural sort function
if (strnatcmp ($arr [$j], $arr [$j +1]) >0) {
$tmp = $arr [$j];
$arr [$j] = $arr [$j +1];//from small to large rows
$arr [$j +1] = $tmp;
}
}else{
According to strcmp () natural sort function
if (strcmp ($arr [$j], $arr [$j +1]) >0) {
$tmp = $arr [$j];
$arr [$j] = $arr [$j +1];//from small to large rows
$arr [$j +1] = $tmp;
}
}
}
}
Return$arr;
}
Array ([0] => file1.txt [1] => file11.txt [2] => file2.txt [3] => File22.txt)
Print_r (Mysort ($files, false));
echo "<br/>";
2<11
Array ([0] => file1.txt [1] => file2.txt [2] => file11.txt [3] => File22.txt)
Print_r (Mysort ($files, true));
?>

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.