排列组合算法

主要是两个函数
第一个:next_permutation 下一个序列
第二个:prev_permutation 上一个序列

next_permutation(下一个序列)

如果说 有{1, 2, 3},那么它的下一个序列就是{1, 3, 2}
其实也就是相当于数学中的排列组合

#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>

using namespace std;

int main()
{
	//1.下一个序列
	vector<int> v1 = { 1, 2 ,3 };
	next_permutation(v1.begin(), v1.end());
	for (auto& v : v1)
	{
		cout << v << " ";
	}
	cout << endl;
	vector<int> v2 = { 1, 2, 3, 4 };
	int index = 0;
	cout << "升序" << endl;

	while (next_permutation(v2.begin(), v2.end()))
	{
		index++;
		cout << "第" << index + 1 << "个序列" << endl;
		copy(v2.begin(), v2.end(), ostream_iterator<int>(cout, " "));
		cout << endl;
	}

	return 0;
}

在这里插入图片描述
在这里插入图片描述

prev_permutation(上一个序列)

跟那个next_permutation是相反的,如果有{3, 2 , 1},那么它的上一序列就是{3, 1, 2}

#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>

using namespace std;

int main()
{
	//1.下一个序列
	vector<int> v1 = {3, 2, 1};
	prev_permutation(v1.begin(), v1.end());
	for (auto& v : v1)
	{
		cout << v << " ";
	}
	cout << endl;
	vector<int> v2 = {4, 3, 2, 1};
	int index = 0;

	cout << "降序" << endl;

	while (prev_permutation(v2.begin(), v2.end()))
	{
		index++;
		cout << "第" << index + 1 << "个序列" << endl;
		copy(v2.begin(), v2.end(), ostream_iterator<int>(cout, " "));
		cout << endl;
	}

	return 0;
}

在这里插入图片描述
在这里插入图片描述

其实也当于数学中的排列组合,用数学公式算A(4 4)的全排列,也是24种情况

评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

温柔了岁月.c

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值