• 大小: 3KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-05-13
  • 语言: C/C++
  • 标签: 算法  C语言  

资源简介

C语言编写的无优先级运算问题,C语言编写的无优先级运算问题,C语言编写的无优先级运算问题

资源截图

代码片段和文件信息

#include 

const int MAX = 50;
int num[5];  //输入的数
int flag[10];  //是否已经用过
int oper[5];  //1--‘+‘ 2--‘-‘ 3--‘*‘ 4--‘/‘
int n m; 
int p[10];  //临时数组
int bestp[10];  //最优数组
int bestop[10]; //最优操作符
char op[] = {‘ ‘ ‘+‘ ‘-‘ ‘*‘ ‘/‘};
int k;  //搜索深度逐渐加深

bool found()
{
    int result = p[1];
    for(int i=1; i<=k; i++)  //计算式子的结果
    {
        switch(oper[i])
        {
        case 1:
            result += p[i+1];
            break;
        case 2:
            result -= p[i+1];
            break;
        case 3:
            result *= p[i+1];
            break;
        case 4:
            result /= p[i+1];
            break;
        }
    }

    return result == m;
}

bool backtrack(int dep)
{
    if(dep > k+1)  //深度逐渐加深
    {
        if(found())
        {
            //copy(p p+n+1 bestp);
           // copy(oper oper+n+1 bestop);
            return true;
        }
        else
            return false;
    }

    for(int j=1; j<=n; j++) //可选的数字
    {
        if(flag[j] > 0)
            continue;
        p[dep] = num[j];
        flag[j] = 1;
        for(int i=1; i<=4; i++) //可选的操作符
        {
            oper[dep] = i;
            if(backtrack(dep+1))
                return true;
            oper[dep] = 0;
        }
        flag[j] = 0;
        p[dep] = 0;
    }   
    return false;

评论

共有 条评论