uva - 146 - ID Codes

题目地址:

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=107&page=show_problem&problem=82


题目大意:

输入一段字符串,求出字符串按照字典序的下一个排列。例如 abc 的下一个 为 acb。

Input: 以‘#“结束,最多有50个字符, 如果没有输出“No Successor”。

Output: 每个样例一行


解题思路:

用next_permutation() 可以很方便的求出,没有下一个排列的话函数返回0。next_permutation() 对应刘汝佳《算法入门经典》P121。


反思:

刚开是鬼使神差的用了循环求字符串的排列,如果和输入的相等则输出下一个。但是别忘了50长度的字符串的排列有多少,必然超时。


//#define Local
#include <iostream>
#include <iomanip>
#include <string>
#include <cstring>
#include <cstdio>
#include <queue>
#include <stack>
#include <algorithm>
#include <cmath>

using namespace std;

#define MAX 50+10
int main()
{
#ifdef Local
	freopen("a.in", "r", stdin);
	freopen("a.out", "w", stdout);
#endif
	char s[MAX], p[MAX], temp[MAX];
	int i = 0, j = 0;
	while (cin >> s)
	{
		if ('#' == s[0])
			break;
		int len = strlen(s);
		if (!next_permutation(s, s+len))
			cout << "No Successor" << endl;
		else
			cout << s << endl;
	}
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值