c++解决整数变换问题(回溯法)

主要利用这段代码进行剪枝操作

 if(a<b){
            for(int j=0;j<=count;j++){
                if(a==temp[j]){
                    cout<<“NO Solution!”;
                    return 0;
                }
            }

 

#include<iostream>
using namespace std;
#define NUM  100000

int main(){
    static int a,b,count=0;
    int *temp=new int[NUM];
    temp[0]=0;
    cout<<“a:”;
    cin>>a;
    cout<<“b:”;
    cin>>b;
    
    while(a!=b){
        if(a>b){
            a=a/2;
            if(a<b){
            for(int j=0;j<=count;j++){
                if(a==temp[j]){
                    cout<<“NO Solution!”;
                    return 0;
                }
            }
            temp[count+1]=a;
        }
            count++;
        }
        if(a<b){
            a=a*3;
            if(a<b){
            for(int j=0;j<=count;j++){
                if(a==temp[j]){
                    cout<<“NO Solution!”;
                    return 0;
                }
            }
            temp[count+1]=a;
        }
            count++;
        }   
    }
    cout<<“次数:”<<count;
}

    原文作者:回溯法
    原文地址: https://blog.csdn.net/ngwth_nail/article/details/84000349
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞