全排列函数permutation以及扩展例题

1.头文件: Algorithm
2.解释: arr为数组,size为数组长度。next_permutation(arr, arr+size);当有下一个较大值返回1,否则返回0,prev_permutation(arr, arr+size);当有上一个较小值返回1,否则返回0。例如:3 2 1,只有上一个较小值,没有下一个较大值。1 2 3只有下一个较大值,没有上一个较小值。2 1 3 的上一个较小值为 1 3 2,下一个较大值为 2 3 1.
原文链接:https://blog.csdn.net/cj151525/article/details/89740670
3.应用:
(1)next_permutation:

#include <iostream>
#include <algorithm>
using namespace std;
int a[1005];
int main()
{   int n;
    cin>>n;
    for(int i=0;i<n;i++)
        cin>>a[i];
    sort(a,a+n);//注意使用permutation必须要用递增数列,否册可能出错
    do
    {
        for(int i=0;i<n;i++)
            cout<<a[i]<<" ";
        cout<<endl;
    }while(next_permutation(a,a+n));
    return 0;
}
/*
3
1 2 3
1 2 3
1 3 2
2 1 3
2 3 1
3 1 2
3 2 1

Process returned 0 (0x0)   execution time : 6.223 s
Press any key to continue.
*/


(2)prev_permutation:

#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
    int a[]={1,2,3};
    sort(a,a+3);
    reverse(a,a+3);
    do
    {
        for(int i=0;i<3;i++)
            cout<<a[i];
        cout<<endl;
    }while(prev_permutation(a,a+3));
    return 0;
}
/*321
312
231
213
132
123

Process returned 0 (0x0)   execution time : 0.036 s
Press any key to continue.*/

**4.例题:**
虽然这个题不是用全排列函数做的,但是。。。
题意:
给你t个测试案例,每个测试案例分为两行,第一行是数组长度,第二行是输入数组,问你在这个数组中长度大于等于3的子串是否有回文串(正过来和反过来都一样的数组)
本质:就是找是否有两个相同的数字他们之间的距离大于1
ac代码:

```cpp
#include<iostream>
#include<cstring>
using namespace std;
int a[2005];
int main()
{
    int n;
    cin>>n;
    while(n--)
    {
        int t,sam=0;
        cin>>t;
        for(int i=1; i<=t; i++)
            cin>>a[i];
        for(int i=1; i<=t-2; i++)
        {
            for(int j=i+2; j<=t; j++)
            {
                if(a[i]==a[j])
                {
                    sam=1;
                    break;
                }
            }
            if(sam==1) break;

        }
        if(sam==1)  cout<<"yes"<<endl;
        else cout<<"no"<<endl;
        memset(a,0,sizeof(a));
    }
    return 0;
}
/*
1
6
1 3 2 2 3 1
yes

Process returned 0 (0x0)   execution time : 12.280 s
Press any key to continue.
*/
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

沉梦昂志️

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

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

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

打赏作者

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

抵扣说明:

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

余额充值