Skip to content

Instantly share code, notes, and snippets.

@you-think-you-are-special
Created April 20, 2015 12:53
Show Gist options
  • Save you-think-you-are-special/9fdb82372bd10b5627e0 to your computer and use it in GitHub Desktop.
Save you-think-you-are-special/9fdb82372bd10b5627e0 to your computer and use it in GitHub Desktop.
Bubble Sort
<?php
function bubble_sort($array)
{
$n = count($array);
for ($i = 0; $i < $n - 1; $i++) {
for ($j = 0; $j < $n - 1 - $i; $j++) {
if ($array[$j] > $array[$j + 1]) {
list($array[$j], $array[$j + 1]) = [$array[$j + 1], $array[$j]];
}
}
}
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment