An algorithm for generating permutations of a PHP redemption

Source: Internet
Author: User
An algorithm for generating permutations of a PHP implementation
 $v) {$tmp = $index;        Unset ($tmp [$i]);            Remove the current prefix/* Debug information for easy comprehension of echo "Len $n, cur $i, index:\n";             Var_dump ($TMP);   */$ret = perm ($s, $n-1, $tmp);                       Recursion gets a slightly shorter arrangement if ($ret! = ") {foreach ($ret as $r) { $res [] = $s [$v].   $r;            Spell the shorter arrangement one by one with the current prefix}} or else {$res [] = $s [$v];    }} return $res;    }}function Getperm ($s) {$n = strlen ($s);    $index = Range (0, $n-1);    Get permutations of different lengths for ($i =1; $i <= $n; $i + +) {Var_dump (perm ($s, $i, $index)); }}getperm (' ABCD ');? >

  • 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.