uva 全排列题目 146 + 729 + 10098

简介: 解题思路:      对于全排列的问题,STL,提供了一个强大的函数,                                 bool   next_permutation(iterator.begin() ,  iterator.end());                        对于当前的序列如果不是最后一个序列则返回真,否则返回假。


解题思路:      对于全排列的问题,STL,提供了一个强大的函数,

                                bool   next_permutation(iterator.begin() ,  iterator.end());

                       对于当前的序列如果不是最后一个序列则返回真,否则返回假。


uva     10098 - Generating Fast 

题目链接: 点击打开链接

代码:
#include <iostream>
#include <cstdio>
#include <string>
#include <cstdlib>
#include <algorithm>
using namespace std;

string str;
int main(){
    int n;
    scanf("%d" , &n);
    while(n--){
        string str;
        cin>>str;
        while(next_permutation(str.begin() , str.end())){
            cout<<str<<endl;
        }
        cout<<endl;
    }
    return 0 ;
}

uva  729 - The Hamming Distance Problem

题目链接:点击打开链接

代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
using namespace std;

int main() {
    int Case , n, h;
    bool first = true;
    scanf("%d" , &Case);
    while(Case--){
        if(first)
          first = false;
        else
          printf("\n");
        string str;
        scanf("%d%d", &n, &h);
        for (int i = 0; i < n; i++) {
            if (i >= n - h)
               str += '1';
            else
               str += '0';
        }
        cout<<str<<endl;
        while (next_permutation(str.begin(), str.end()))
              cout << str << endl;
    }
    return 0;
}




uva  146 - ID Codes

题目链接:点击打开链接

代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <string>
#include <algorithm>
using namespace std;

string str;

int main(){
    while(cin>>str){
        if(str == "#")
            break;
        if(next_permutation(str.begin(),str.end()))
            cout<<str<<endl;
        else
            printf("No Successor\n");
    }  
    return 0;
}


目录
相关文章
|
2月前
acwing 898 数字三角形
acwing 898 数字三角形
31 2
|
2月前
Leetcode第47题(全排列II)
LeetCode第47题要求返回一个包含重复数字序列的所有不重复全排列,通过深度优先搜索和去重策略来解决。
31 0
|
6月前
leetcode54螺旋矩阵题解
leetcode54螺旋矩阵题解
33 2
|
6月前
|
C++
【洛谷 P1706】全排列问题 题解(全排列)
该问题要求按字典序输出从1到n的所有不重复排列。输入为整数n,输出为每行一个的数字序列,每个数字占5个宽度。样例输入3,输出6行全排列。代码使用C++,通过`next_permutation`函数生成所有排列。注意n的范围是1到9。
43 0
|
6月前
|
缓存 算法 数据可视化
LeetCode 题目 119:杨辉三角 II
LeetCode 题目 119:杨辉三角 II
|
6月前
|
存储 SQL 算法
LeetCode 题目 118:杨辉三角
LeetCode 题目 118:杨辉三角
c++力扣题目全排列
c++力扣题目全排列
|
机器学习/深度学习 算法 安全
LeetCode - #47 全排列 II
不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。如果大家有建议和意见欢迎在文末留言,我们会尽力满足大家的需求。
leetcode:47.全排列 II
给定一个可包含重复数字的序列,返回所有不重复的全排列。
52 0
|
算法 Go Python
LeetCode46:全排列(八皇后)
LeetCode46:全排列(八皇后)
LeetCode46:全排列(八皇后)