DFS实例

回文子序列

输入一个字符串,输出回文子序列的个数
#include <bits/stdc++.h>

using namespace std;
string str;
string b;
int n,ans=0;
void dfs(int i){
    if(i>=n){//递归出口
        string c=b;
        reverse(c.begin(),c.end());//字符串反转
        ans+=(c==b);//判断是否回文
        return ;
    }
    //不选
    dfs(i+1);
    //选
    b+=str[i];
    dfs(i+1);
    b.pop_back();
}
int main()
{
    int i;
    cin>>str;
    n=str.size();
    dfs(0);
    cout<<ans-1;
    return 0;
}
/*
acba
有a,c,b,aa,aca,aba
*/

全排列

输出1到n的全排列
#include<bits/stdc++.h>

using namespace std;
int a[105],b[105];int n;
void dfs(int st){
    if(st>=n+1){
            for(int i=1;i<=n;i++){
                cout<<a[i]<<" ";
            }
            cout<<endl;
        return ;
    }
    for(int i=1;i<=n;i++){
        if(b[i]==0){
            b[i]=1;//标记选过了
            a[st]=i;
            dfs(st+1);
            b[i]=0;
        }
    }
}

int main(){
    cin>>n;
    dfs(1);
return 0;
}

整数分解

给定一个正整数n,将其恰好分成k个数,使其和等于n,要求输出方案数(忽略顺序)以及每一个方案数(按字典序排列)
#include <bits/stdc++.h>

using namespace std;
int n,k;
int ans=0;
int a[1005];
void dfs(int s,int t){
    if(t==k){
        if(s==n){
            for(int j=0;j<t-1;j++){
                cout<<a[j]<<"+" ;
            }
            cout<<a[t-1]<<"="<<s<<endl;
            ans++;
        }
      return ;
    }
    for(int i=1;i<=n-s;i++){
        a[t]=i;
        if(i>=a[t-1]){//去掉重复的方案
             dfs(s+i,t+1);
        }
    }
}
int main()
{
    cin>>n>>k;
    dfs(0,0);
    cout<<ans;
    return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

萨达大

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

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

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

打赏作者

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

抵扣说明:

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

余额充值