next_permutation、prev_permutation

这篇博客介绍了C++中`next_permutation`和`prev_permutation`函数的使用,展示了如何通过这两个函数生成一个整数数组或字符串的所有可能排列。示例代码分别演示了对字符数组和字符串类型的数据进行全排列操作,输入分别为升序和降序数组,输出了所有不同的排列组合。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

两个函数的头文件为#include< algorithm>

1.next_permutation

char类型

#include<iostream>

#include<algorithm>
using namespace std;
int main(){
    int n;
    cin>>n;
    int a[15];
    for(int i=1;i<=n;i++)
    a[i]=i;
    do{
        for(int i=1;i<=n;i++)
        cout<<a[i]<<' ';
        cout<<endl;
    }while(next_permutation(a+1,a+n+1));
    return 0;
}

输入3后的结果如下:
在这里插入图片描述
string类型

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
int main() {
	int n;
	string a="123";
	do {
		
		cout <<a<< endl;
	} while (next_permutation(a.begin(),a.end()));
	return 0;
}

输出结果如下:
在这里插入图片描述

2.prev_permutation

char类型

#include<iostream>

#include<algorithm>
using namespace std;
int main() {
	int n;
	cin >> n;
	int a[15];
	for (int i = 1; i <= n; i++)
		a[i] = n-i+1;
	do {
		for (int i = 1; i <= n; i++)
			cout << a[i] << ' ';
		cout << endl;
	} while (prev_permutation(a + 1, a + n + 1));
	return 0;
}

输入3后的结果如下:
在这里插入图片描述

string类型

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
int main() {
	int n;
	string a="321";
	do {
		
		cout <<a<< endl;
	} while (prev_permutation(a.begin(),a.end()));
	return 0;
}

输出结果如下:
在这里插入图片描述
题目例子https://blog.youkuaiyun.com/weixin_46028214/article/details/115432590

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值