C++标准全排列

1 #include "stdafx.h" 2 #include<algorithm> 3 #include <string> 4 #include <iostream> 5 using namespace std; 6  7 void print_arrange(string s) 8 { 9     sort(s.begin(),s.end());10     do 11     {12         cout<<s<<endl;13     } while (next_permutation(s.begin(),s.end()));14 }15 16 int _tmain(int argc, _TCHAR* argv[])17 {18     string s;19     cin>>s;20     print_arrange(s);21     return 0;22 }

原文链接: https://www.cnblogs.com/lanbaoming/archive/2011/08/09/2132517.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/30211

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 上午7:33
下一篇 2023年2月8日 上午7:34

相关推荐