- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 C++ 的新手,正在编写子集求和程序,该程序接受用户定义的一组数字,其中第一个数字被认为是总数。我已经尝试使用 DDD 来调试这个程序,但是我仍然遇到越界错误。我似乎无法找出为什么会这样。有什么线索吗?谢谢。这是错误:
terminate called after throwing an instance of 'std::out_of_range'
what(): vector::_M_range_check
代码:
#include <iostream>
#include <vector>
#include <cassert>
#include <iomanip>
#include <climits>
#include <math.h>
#include <algorithm>
typedef unsigned int uint;
using namespace std;
//////// Function declerations //////////
void sum_of_subsets( uint index,
uint weight,
uint total,
vector<bool> &include,
vector<uint> &w,
uint W );
bool promising ( uint index,
uint weight,
uint W,
vector<uint> w,
uint total );
.
/////////////// Main //////////////////
int main()
{
//string sortingCode = "-as";
vector<uint> w; // vector of weights
vector<bool> include;
uint W; // the total
uint index = 0;
uint weight = 0; // the current weight of subsets
uint total = 0; // the superset total weight
while( ! cin.eof() )
{
uint value;
if( cin >> value && ! cin.eof() )
w.push_back( value );
}
W = w.front();
w.erase( w.begin() );
// instantiate the include vector to false
for( uint k = 0; k <= w.size(); k++ )
include.push_back(0);
// calculate the superset total
for( uint k = 0; k <= w.size()-1; k++ )
total += w.at(k);
// calculate the sum of subsets accordig to CL argument
sum_of_subsets( index, weight, total, include, w, W );
// report success
return 0;
}
.
////////// Function Bodies ///////////
void sum_of_subsets( uint index,
uint weight,
uint total,
vector<bool> &include,
vector<uint> &w,
uint W )
{
cout << "inside sumb_of_subsets" << endl;
if( promising(index, weight, W, w, total) )
{
cout << "promising is true, continue" << endl;
if( weight == W )
{
for( uint k = 0; k <= index; k++ )
{
if(include.at(k))
cout << w.at(k) << " ";;
}
cout << endl;
}
else
{
include.at(index + 1) = 1;
cout << "index1 = " << index << endl;
sum_of_subsets( index + 1,
weight + w.at(index + 1 ),
total - w.at(index + 1),
include, w, W ) ;
include.at(index + 1) = 0;
cout << "index2 = " << index << endl;
sum_of_subsets( index + 1,
weight,
total - w.at(index + 1),
include, w, W );
}
}
}
.
bool promising ( uint index,
uint weight,
uint W,
vector<uint> w,
uint total )
{
cout << "inside promising" << endl;
cout << "W = " << W << endl;
cout << "weight = " << weight << endl;
return ( weight + total >= W )
&& ( (weight == W) || (weight + w.at(index+1) <= W));
}
最佳答案
这个错误:
terminate called after throwing an instance of 'std::out_of_range'
what(): vector::_M_range_check
表明您的 vector 调试版本正在抛出异常,但没有捕获到它。发生这种情况时,程序会立即终止而不展开堆栈,这会使调试变得更加困难。
更改为:
// calculate the sum of subsets accordig to CL argument
try
{
sum_of_subsets( index, weight, total, include, w, W );
}
catch (...)
{
cout << "put breakpoint here!" << endl;
}
在 catch 中添加一个断点,并检查回溯以查看您的代码的哪一部分出错了。
关于c++ - 子集程序之和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16179720/
这个问题可能类似于In Angular2 *ngFor iteration, how do I output only unique values from the array?但我的问题是还有更多功
我编写了一个算法来获取 float 的总和,该算法对于整数来说非常有效,但是当我应用于 float 时,我得到的总和是负数。但是我的 float 数组只有正 float 。在这里我发布我的代码,感谢您
我想将这个简单的 for 循环转换为并行循环。它遍历字符串数组(从文本文件读取的 float )并计算总和。 for (int i = 0; i { float tmp; if (f
我正在尝试总结日期差异,一切都很好,除了如果有相同日期我想添加 1,例如,如果起始日期是:01/01/2003到目前为止是 01/01/2003 那么我想添加 1 天,但它没有添加 1 天,而是仅在
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Is JavaScript’s Floating-Point Math Broken? 这将是一个非常基本的计算机科
我刚接触sql,卡住了。我正在尝试计算每个用户走过的(每年)距离总和。我有一个具有以下结构的表(我们称之为 dist_table): rowid user_name date
我刚接触sql,卡住了。我正在尝试计算每个用户走过的(每年)距离总和。我有一个具有以下结构的表(我们称之为 dist_table): rowid user_name date
给定一个正数数组。我想将数组拆分为 2 个不同的子集,以使它们的 gcd(最大公约数)之和最大。 示例数组:{6,7,6,7}。 答案:需要的两个子集是:{6,6}和{7,7};它们各自的 gcd(s
我想在我的数组中求和:
我想将下面的字符串拆分为字母和数字,然后我需要计算数字的总和。我的示例问题是 a[20]={"abcd123dc2"}; 预期输出: abcddc 8 我的代码: int main() { c
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
为什么 sizeof 运算符返回的结构大小大于该结构成员的总大小? 最佳答案 这是因为添加了填充以满足对齐约束。 Data structure alignment影响程序的性能和正确性: 未对齐的访问
我是一名优秀的程序员,十分优秀!