php數組全排列,元素所有組合

來源:互聯網
上載者:User

標籤:

<?php$source = array(‘pll‘,‘我‘,‘愛‘,‘你‘,‘嘿‘);sort($source); //保證初始數組是有序的$last = count($source) - 1; //$source尾部元素下標$x = $last;$count = 1; //組合個數統計echo implode(‘,‘, $source), "<br>"; //輸出第一種組合while (true) {    $y = $x--; //相鄰的兩個元素    if ($source[$x] < $source[$y]) { //如果前一個元素的值小於後一個元素的值        $z = $last;        while ($source[$x] > $source[$z]) { //從尾部開始,找到第一個大於 $x 元素的值            $z--;        }        /* 交換 $x 和 $z 元素的值 */        list($source[$x], $source[$z]) = array($source[$z], $source[$x]);        /* 將 $y 之後的元素全部逆向排列 */        for ($i = $last; $i > $y; $i--, $y++) {            list($source[$i], $source[$y]) = array($source[$y], $source[$i]);        }        echo implode(‘,‘, $source), "<br>"; //輸出組合        $x = $last;        $count++;    }    if ($x == 0) { //全部組合完畢        break;    }}echo ‘Total: ‘, $count, "\n";?>

 

php數組全排列,元素所有組合

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.