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

uva146-ID码

时间:2016-08-12 00:59:31      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

此题为小白书暴力求解法的训练参考

 

翻译请戳 http://luckycat.kshs.kh.edu.tw/

 

解题思路

嗯。。。用c++里的next_permutation。。。

 

代码

#include<cstdio>
#include<algorithm>
#include<string.h> 
const int maxLen = 55;
char s[maxLen];
using namespace std;
int main()
{
    scanf("%s", s);
    while(strchr(s, #) == NULL) {
        char copy[maxLen];
        strcpy(copy, s);
        if(next_permutation(copy, copy+strlen(copy))) printf("%s\n", copy);
        else printf("No Successor\n");
        scanf("%s", s);
    }
    return 0;
}

 

uva146-ID码

标签:

原文地址:http://www.cnblogs.com/ZengWangli/p/5763175.html

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