ホームページ  >  記事  >  バックエンド開発  >  phpバブルソートコード

phpバブルソートコード

WBOY
WBOYオリジナル
2016-07-25 08:43:20903ブラウズ
  1. 関数 bubbleSort ($items) {
  2. $size = count($items);
  3. for ($i=0; $i for ($j=0; $j if ($items[$j+ 1] < $items[$j]) {
  4. arraySwap($items, $j, $j+1);
  5. }
  6. }
  7. }
  8. $items を返します。
  9. }
  10. function arraySwap (&$arr, $index1, $index2) {
  11. list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1] );
  12. }
复制代

php


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。