文章

6

粉丝

0

获赞

13

访问

678

头像
全排列 题解:借用next_permutation函数
P1185 中国矿业大学/北京大学机考题
发布于2025年3月25日 16:57
阅读数 148

提前打印一个本身

#include<stdio.h>
#include<algorithm>
#include<string.h>
using namespace std;

int main(){
    char a[10];
    gets(a);
    int n=strlen(a);
    string str1=a;
    printf("%s\n",str1.c_str());
    while(next_permutation(a,a+n)){
        string str=a;
        printf("%s\n",str.c_str());
    }
return 0;
}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发