Created
June 14, 2017 06:09
-
-
Save jjsty1e/79b0b210b7bc41619326ebbd70d5b4ce to your computer and use it in GitHub Desktop.
my sort
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?Php | |
$len = count($arr); | |
for ($i = 0; $i < $len; $i++) { | |
for ($j = 0; $j < $i; $j++) { | |
if ($arr[$i] < $arr[$j]) { | |
$temp = $arr[$i]; | |
$arr[$i] = $arr[$j]; | |
$arr[$j] = $temp; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment