资源简介
c++ 计算m点问题,希望对大家有帮助!!!
代码片段和文件信息
#include
using namespace std;
void Backtrack(int t);
void HasSolution();
int n;
int m;
int value;
bool hasFind;
bool *use; // 记录工具已使用的情况
char *operatorr;
int *process;
int *datas;
void Backtrack(int t)
{
if (t >= n)
{
if (value == m)
{
hasFind = true;
}
}
else
{
for (int i = 0; i < n; ++i)
{
if (t == 0)
{
if (!use[i])
{
process[0] = datas[i];
value = datas[i];
use[i] = true;
Backtrack(t + 1);
use[i] = false;
}
}
else
{
if (!use[i])
{
process[t] = datas[i];
use[i] = true;
int temp = value;
if (datas[i] != 0)
{
operatorr[t - 1] = ‘/‘;
value = temp / datas[i];
Backtrack(t + 1);
if (hasFind)
{
return;
}
}
operatorr[t - 1] = ‘*‘;
value = temp * datas[i];
Backtrack(t + 1);
if (hasFind)
{
return;
}
operatorr[t - 1] = ‘-‘;
value = temp - datas[i];
Backtrack(t + 1);
if (hasFind)
{
return;
}
operatorr[t - 1] = ‘+‘;
value = temp + datas[i];
Backtrack(t + 1);
if (hasFind)
{
return;
}
value = temp;
use[i] = false;
}
}
}
}
}
void HasSolution()
{
FILE *file;
if ((file = fopen(“input.txt“ “r“)) == NULL)
{
cout << “File ‘input.txt‘ could not be opened!“ << endl;
}
else
{
fscanf (file “%d“ &n);
fscanf (file “%d“ &m);
cout << n << “ “ << m << endl;
hasFind = false;
use = new bool[n];
datas = new int[n];
process = new int[n];
operatorr = new char[n - 1];
for (int i = 0; i < n; ++i)
{
use[i] = false;
fscanf (file “%d“ &datas[i]);
cout << datas[i] << “ “;
}
cout << endl << endl;
fclose(file);
Backtrack(0);
if ((file = fopen(“output.txt“ “w“)) == NULL)
{
cout << “Could not create file ‘output.txt‘!“ << endl;
}
else
{
if (hasFind == false)
{
cout << “No Solution!“ << endl;
fprintf(file “No Solution!“);
}
else
{
for (i = 0; i < n - 1; ++i)
{
cout << process[i] << operatorr[i] << process[i + 1];
fprintf (file “%d%c%d“ process[i] operatorr[i] process[i+1]);
switch (operatorr[i])
{
case ‘/‘:
process[i + 1] = process[i] / process[i + 1];
break;
case ‘*‘:
process[i + 1] = process[i] * process[i + 1];
break;
case ‘-‘:
process[i + 1] = process[i] - process[i + 1];
break;
case ‘+‘:
process[i + 1] = process[i] + process[i + 1];
break;
default:
break;
}
cout << “=“ << process[i + 1] << “; “;
fprintf (file “=%d; “ process[i + 1]);
}
cout << endl;
}
fclose(file);
}
}
}
void main()
{
HasSolution();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 518 2008-12-17 19:57 5-19 算m点问题\5to19\5to19.dsw
文件 33792 2008-12-17 20:03 5-19 算m点问题\5to19\5to19.ncb
文件 661 2008-12-17 20:03 5-19 算m点问题\5to19\5to19.plg
文件 2928 2008-12-17 20:02 5-19 算m点问题\5to19\m.cpp
文件 48640 2008-12-17 20:03 5-19 算m点问题\5to19\5to19.opt
文件 4268 2008-12-17 20:03 5-19 算m点问题\5to19\5to19.dsp
文件 82944 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\vc60.idb
文件 110592 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\vc60.pdb
文件 2001516 2008-12-17 20:02 5-19 算m点问题\5to19\Debug\5to19.pch
文件 2002596 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\m.pch
文件 157981 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\m.obj
文件 790236 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\m.ilk
文件 553032 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\m.exe
文件 1115136 2008-12-17 20:04 5-19 算m点问题\5to19\Debug\m.pdb
文件 17 2008-12-17 20:04 5-19 算m点问题\5to19\input.txt
文件 3341 2008-12-17 20:04 5-19 算m点问题\5to19\m.dsp
文件 33792 2008-12-17 20:08 5-19 算m点问题\5to19\m.ncb
文件 721 2008-12-17 20:04 5-19 算m点问题\5to19\m.plg
文件 41 2008-12-17 20:04 5-19 算m点问题\5to19\output.txt
文件 48640 2008-12-17 20:08 5-19 算m点问题\5to19\m.opt
文件 510 2008-12-17 20:08 5-19 算m点问题\5to19\m.dsw
目录 0 2008-12-17 19:57 5-19 算m点问题\5to19\Debug
目录 0 2008-12-17 20:03 5-19 算m点问题\5to19
目录 0 2008-12-17 19:56 5-19 算m点问题
----------- --------- ---------- ----- ----
6991902 24
- 上一篇:MFC音乐播放器
- 下一篇:vc Teechart8
相关资源
- c++api文档
- C++对RS232的通讯的编程实现
- EM算法源码C++硬币问题
- SQL+C++学生信息管理系统
- More Effective C++ 英文版pdf
- C++课程设计题目源代码
- 词法分析C++源码
- gcc-c++-4.4.7-4.el6.x86_64.rpm
- 建立一个名为Student的类,该类有以下
- 五子棋人机对战源码(C++)
- C++ 魔塔 游戏 源代码
- 完整扫雷源代码(C++MFC)
- SRAD算法C++实现
- C/C++深层探索 PDF清晰版
- VC++串口通信20个经典源码
- c++ 拉格朗日插值、分段线性插值、三
- VC C++数字图像处理实验程序
- 五个小程序 VC++的源代码
- C++MFC实训_计算器_附实训报告
- 实用C++调试指南
- C++网络对战版五子棋
-
c++实现解析xm
l - 毕业设计c++程序设计教学网站
- C++ MFC编写的计算器含各种进制转化、
- vc++ MD5算法源码
- 自制杀毒软件C++源码
- 数据结构 图 景点信息管理系统
- 21天学通 C++第8版)完整高清
- More Effective C++ 侯捷翻译 高清带书签
- 高速上手 C++ 11 14 17
评论
共有 条评论