博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于visual Studio2013解决面试题之0506取和为m的可能组合
阅读量:5300 次
发布时间:2019-06-14

本文共 1308 字,大约阅读时间需要 4 分钟。



题目

解决代码及点评

 
 
 
 
 
/*    输入两个整数  n  和  m,从数列 1,2,3.......n  中  随意取几个数,    使其和等于  m ,要求将其中所有的可能组合列出来.*/#include 
#include
#include
using namespace std;// 通过递归查找和void findSum(int m, int n, list
arr1){ // 如果n太小,小到连所有加起来都比m小,那就结束了 if (n*(n + 1) / 2 < m) return; // 使用另外一个链表arr2,避免arr1被污染 list
arr2 = arr1; // 如果n比m小 if (n <= m) { // 计算求和还差多少 int remain = m - n; // 把n丢入到链表 arr2.push_back(n); // 如果求和还差一些那么,要递归计算,剩下的差值,有多少方案实现 if (remain > 0) { /* 带n的,和为m的数列 */ findSum(remain, n - 1, arr2); } else // 如果正好相等,那么就是找到了一种情况 { // 打印结果 list
::iterator it; for (it = arr2.begin(); it != arr2.end(); it++) { cout << *it << " "; } cout << endl; } } // 带n的组合完毕之后,求不带n的组合 findSum(m, n - 1, arr1);}// 测试主函数int main(){ int n = 6; int m = 10; list
arr; cout << "input n:"; cin >> n; cout << "input m:"; cin >> m; findSum(m, n, arr); system("pause"); return 0;}

代码下载及其运行

代码下载地址:http://download.csdn.net/detail/yincheng01/6704519

解压密码:c.itcast.cn

下载代码并解压后,用VC2013打开interview.sln,并设置对应的启动项目后,点击运行即可,具体步骤如下:

1)设置启动项目:右键点击解决方案,在弹出菜单中选择“设置启动项目”

2)在下拉框中选择相应项目,项目名和博客编号一致

3)点击“本地Windows调试器”运行

程序运行结果






转载于:https://www.cnblogs.com/new0801/p/6177354.html

你可能感兴趣的文章
JAVA学习之开发环境配置
查看>>
Java中Runnable和Thread的区别
查看>>
C#通过webbrowser控件与javascript交互
查看>>
mongodb 的安装(Centor OS )
查看>>
设计模式之迭代器模式
查看>>
Android高效加载大图、多图解决方案,有效避免程序OOM
查看>>
git操作
查看>>
css常识
查看>>
css浮动
查看>>
golang字符串常用系统函数
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
hrbustOJ 1373Leyni, LOLI and Leaders(图论)
查看>>
[QT_QML]qml假如调试信息 qDebug console.debug
查看>>
波浪子序列 (Wavio Sequence,UVa 10534)
查看>>
apache简介与安装
查看>>
从头开始写框架(二):孕育框架的种子_下
查看>>
华为手机在开发Android调试时logcat不显示输出信息的解决办法
查看>>
TCP 建立连接为什么要握 3 次手?
查看>>
android:ToolBar详解
查看>>