c++ - 当多次调用动态分配数组的函数时出现 malloc 错误?

标签 c++ arrays heap-memory

我有一个生成价格格的函数和一个使用该格为相关期权定价的函数。 generate_lattice 函数为数组动态分配空间,并返回指向该数组的指针。该指针是传递给 price_from_tree 的内容。这是代码:

#include <iostream>
#include <math.h>

using std::cout;
using std::endl;
using std::max;
using std::nothrow;

double* generate_lattice(double asset_price, double u, double d, int periods)
{
    int nodes = (periods * (periods + 1)) / 2; //Number of nodes = sum(1, # of periods)
    double * lattice; 

    lattice = new (nothrow) double[nodes]; 
    double up, down;
    int price_index = 0;
    for (int period = 0; period < periods + 1; period++) {
        for (int exp = 0; exp < period + 1; exp++) {
            up = pow(1 + u, exp);
            down = pow(1 - d, period - exp);
            lattice[price_index] = asset_price * up * down;
            price_index++;
        }
    }
    return lattice;
}

double price_from_tree(double* lattice, int periods, double strike, double risk_free, double period_len_years, bool euro = true, bool call = true)
{
    int num_prices = ((periods + 1) * (periods + 2)) / 2;
    double asset_max = lattice[num_prices - 1];
    double asset_min = lattice[num_prices - (periods + 1)];
    double asset_t0 = lattice[0];
    double u = pow(asset_max / asset_t0, pow(periods, -1));
    double d = pow(asset_min / asset_t0, pow(periods, -1));
    double p = (exp(risk_free * period_len_years) - d) / (u - d);
    double p_minus1 = 1 - p;
    int start_node;
    if (euro == true) { start_node = num_prices - periods - 1; }
    else { start_node = 0; }
    int sign;
    if (call == true) { sign = 1; }
    else { sign = -1; }
    for (int node = start_node; node < num_prices; node++) {
        lattice[node] = max(sign * (lattice[node] - strike), 0.0);
    }
    int price_index = num_prices - 1;
    double pv_mult = exp(-risk_free * period_len_years);
    double down_payoff, up_payoff, prev_payoff;
    for (int period = periods + 1; period > 0; period--) {
        for (int node = 0; node < period - 1; node++) {
            down_payoff = lattice[price_index - (node + 1)];
            up_payoff = lattice[price_index - node];
            prev_payoff = pv_mult * (p * up_payoff + p_minus1 * down_payoff);
            if (euro == false) {
                prev_payoff = max(lattice[price_index - (node + 1) - (period - 1)], prev_payoff);
            }
            lattice[price_index - (node + 1) - (period - 1)] = prev_payoff;
        }
        price_index -= period;
    }
    return lattice[0];
}

int main(int argc, char** argv)
{
    double* lattice = generate_lattice(100, 0.10, 0.10, 2);
    double option1 = price_from_tree(lattice, 2, 105, 0.05, 1, true, true);
    cout<<"option 1: "<<option1<<endl;
    double* lattice2 = generate_lattice(100, 0.10, 0.10, 2);
    return 0;
}

当我运行代码时,我得到了这个输出:

option 1: 8.28214 test: malloc.c:3096: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size)

= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' failed. Aborted

------------------
(program exited with code: 134)

我能找到的关于错误 134 的所有描述都是 The job is killed with an abort signal. 该代码在每种情况下都为 price_from_tree 返回正确的值我已经尝试过,但如果我包含对 generate_lattice 的多次调用,它会失败并显示所述错误。我的 price_from_tree 函数是否存在导致内存困惑的问题?在这种情况下我最好使用 vector 吗?

最佳答案

你正在严重破坏你的堆。如果您使用 valgrind 运行(假设您在 Linux 机器上),则会出现大量错误。

==23357== Invalid write of size 8
==23357==    at 0x400B9E: generate_lattice(double, double, double, int) (so.cpp:21)
==23357==    by 0x400FC4: main (so.cpp:68)
==23357==  Address 0x595b058 is 0 bytes after a block of size 24 alloc'd
==23357==    at 0x4C27FFB: operator new[](unsigned long, std::nothrow_t const&) (vg_replace_malloc.c:325)
==23357==    by 0x400B1A: generate_lattice(double, double, double, int) (so.cpp:14)
==23357==    by 0x400FC4: main (so.cpp:68)

关于c++ - 当多次调用动态分配数组的函数时出现 malloc 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10504421/

相关文章:

c++ - 虚拟方法 C++

c# - 将硬编码数据传输到数组

c# - CLR 同步块(synchronized block)地址

c++ - Matlab编码器:如何强制变量具有变量:inf大小

c++ - 对 "operations"的 undefined reference

ios - Swift 3 - 没有 'sort' 候选人产生预期的上下文结果类型 'NSMutableArray'

c - 打印一个字符数组,但不希望结尾

c - C 中的整数到字符串,无需预先分配字符数组

java - 如何判断堆转储中字符串与 char[] 的比率是否表明存在问题?

C++ 共享库宏