[Algorithm] full permutation class problem

Source: Internet
Author: User

The result of a full arrangement of three characters for ABC is ABC,ACB,BAC,BCA,CAB,CBA. A realization idea can be described as follows: Step1, determines the first bit of the character, can be a, B or C. Step2, after the first character is determined, the remaining characters are perfection arranged.

The C + + implementation is as follows:

voidPermutation (Char* Chars,Char*begin) {    if(*begin==' /') {cout<< chars <<Endl; return; }     for(Char* p=begin;*p!=' /';p + +)    {        inttemp=*p; The first character can be, A, B, or C.        implemented by swapping. *p=*begin; *begin=temp; Permutation (Chars,begin+1);        Perfection the rest of the characters. Temp=*p; Recovery*p=*begin; *begin=temp; }}

Note that the final code, which is three lines of code, restores the results of an arrangement to before the arrangement.

[Algorithm] full permutation class problem

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.