Brute Force & STL --- UVA 146 ID Codes

简介:  ID Codes    Problem's Link:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=3&problem=82&mosmsg=Submission+received+with+ID+14418598  Mean:   求出可重排列的下一个排列。

 

 ID Codes 

 

Problem's Link:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=3&problem=82&mosmsg=Submission+received+with+ID+14418598


 Mean: 

 求出可重排列的下一个排列。

analyse:

 直接用STL来实现就可。自己手动写了一个,并不复杂。

Time complexity: O(n^2)

 

Source code: 

 1.STL

#include <iostream>  
#include <cstdio>  
#include <cstring>  
#include <algorithm>  
using namespace std;  
int main()  
{  
    char s[55];  
    while(scanf("%s",s)!=EOF)  
    {  
        if(s[0]=='#') break;  
        if(next_permutation(s,s+strlen(s))) printf("%s\n",s);  
        else printf("No Successor\n");  
        memset(s,0,sizeof(s));  
    }  
    return 0;  
}  

2.手写

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
    //freopen("a.txt","r",stdin);
    char s[55];
    while(scanf("%s",s),s[0]!='#')
    {
        int i,j,len(strlen(s));
        for(i=len-2; i>=0; i--)
            if(s[i]<s[i+1])
                break;
        if(i<0) puts("No Successor");
        else
        {
            for(j=i+1; i<len; j++)
                if(s[i]>=s[j])
                {
                    char c=s[i];
                    s[i]=s[j-1];
                    s[j-1]=c;
                    break;
                }
            sort(s+i+1,s+len);
            puts(s);
        }
    }
    return 0;
}

  

目录
相关文章
|
4月前
|
编译器 API C++
【Matlab】解决使用Mex 报错There was a problem creating the mex file for Real Time Execution ,Please ensure y
解决Matlab使用Mex时出现的"Real Time Execution"错误的步骤,即通过安装"MATLAB 支持 MinGW-w64 C/C++ 编译器"这个包来确保编译器设置正确。
62 0
LeetCode 383. Ransom Note
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。
71 0
LeetCode 383. Ransom Note
|
索引
LeetCode 287. Find the Duplicate Number
给定一个包含 n + 1 个整数的数组 nums,其数字都在 1 到 n 之间(包括 1 和 n),可知至少存在一个重复的整数。假设只有一个重复的整数,找出这个重复的数。
90 0
LeetCode 287. Find the Duplicate Number
|
机器学习/深度学习
Leetcode-Easy 136. Single Number
Leetcode-Easy 136. Single Number
120 0
Leetcode-Easy 136. Single Number
Leetcode-Easy 72. Edit Distance
Leetcode-Easy 72. Edit Distance
89 0
Leetcode-Easy 72. Edit Distance
|
网络安全 开发工具
Unable to negotiate with XX.XX.XX.XX: no matching host key type found. Their offer: ssh-dss
Unable to negotiate with XX.XX.XX.XX: no matching host key type found. Their offer: ssh-dss
PAT (Advanced Level) Practice - 1068 Find More Coins(30 分)
PAT (Advanced Level) Practice - 1068 Find More Coins(30 分)
114 0
PAT (Advanced Level) Practice - 1043 Is It a Binary Search Tree(25 分)
PAT (Advanced Level) Practice - 1043 Is It a Binary Search Tree(25 分)
126 0
LeetCode之Ransom Note
LeetCode之Ransom Note
116 0