码迷,mamicode.com
首页 > 其他好文 > 详细

全排列(cpp)

时间:2019-08-14 12:59:37      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:ESS   perm   pre   ons   str   process   nta   void   cpp   

void process1(string str, int i){
    if(i == str.length()){
        cout << str << endl;
    }
    for(int j = i;j < str.length(); j++){
        swap(str[i], str[j]);
        process1(str, i+1);
    }
}

void printAllPermutations1(string str){
    process1(str, 0);
}

全排列(cpp)

标签:ESS   perm   pre   ons   str   process   nta   void   cpp   

原文地址:https://www.cnblogs.com/dysjtu1995/p/11351063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!