STL在ACM中的典型应用
2009-05-01 04:08 Logic0 阅读(162) 评论(0) 编辑 收藏 举报题目:
http://acm.pku.edu.cn/JudgeOnline/problem?id=1731
代码:
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str;
while(cin>>str)
{
sort(&str[0],&str[0]+str.length());//先排序
cout<<str<<endl;//输出排序后的
while(next_permutation(&str[0],&str[0]+str.length()))
{
cout<<str<<endl;
}
}
return 0;
}
暂时只发现这个,留待以后继续补充哈。