以下是我的代码:
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string s;
while(cin>>s && s!="#")
{
if(next_permutation(s.begin(),s.end()))
cout<<s<<endl;
else
cout<<"No Successor"<<endl;
}
return 0;
}
posted on 2011-04-15 16:14
lee1r 阅读(308)
评论(0) 编辑 收藏 引用 所属分类:
题目分类:基础/模拟 、
题目分类:递推/递归