gpt4 book ai didi

c++ - C 中的另一个 coredump 问题

转载 作者:行者123 更新时间:2023-11-30 21:21:00 27 4
gpt4 key购买 nike

当我用
编译代码时g++ -g -o prueba prueba.cpp -lstdc++ -O3 -march=corei7 -mtune=corei7 -std=c++0x

使用g++ -g prueba.cpp调试后,我得到了这些:

prueba.cpp:24:6: error: ‘stoi’ is not a member of ‘std’
tm = std::stoi(string2);
^
prueba.cpp:34:7: error: ‘stoi’ is not a member of ‘std’
ler = std::stoi(string1);
^
prueba.cpp:77:8: error: ‘stoi’ is not a member of ‘std’
C[i]=std::stoi(string);
^

我将 stoi 声明为 std::stoi 的方式基于 this example .

损坏的 block 是:

//////////////////////////////////////////
if( B != NULL )
{
for(i=0;i<div;i++)
{
a=B[i][0];
b=B[i][1];
std::cout<<a<<"\t"<<b<<"\n";
A[b][a]=A[b][a]+1;
A[a][b]=A[a][b]+1;
}
free(B);
}
//////////////////////////////////////////

这给我带来了段错误的问题。但我不明白问题是什么或出在哪里。

这些文件是:

LER https://app.box.com/s/oi52zw7j8w19txr4cau2pf4w3pzmcelm

相对https://app.box.com/s/bo2xwm2hviucx4jzarxv9ghg11j72goa

TM https://app.box.com/s/ofmhsttqujor6di0tm89tiiikm3ou1xj

完整代码为:

#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <iostream>
#include <fstream>
#include <string.h>

using namespace std;

int main()
{
int a,b,div,value,k,i,j,tm,ler;
char string[256];
char string1[256];
char string2[256];

FILE *TM = fopen("TM","r");
if(TM == NULL)
{
printf("Can't open %s\n","TM");
exit(1);
}
fscanf(TM,"%255s",string2);
tm = std::stoi(string2);
fclose(TM);

FILE *LER = fopen("LER","r");
if(LER == NULL)
{
printf("Can't open %s\n","LER");
exit(1);
}
fscanf(LER,"%255s",string1);
ler = std::stoi(string1);
fclose(LER);

div=ler/2;

int **A;
A = (int **)malloc(tm*sizeof(int*));
for(j=0;j<tm;j++)
{
A[j]=(int*)malloc(tm*sizeof(int));
}

int **B;
B = (int **)malloc(div*sizeof(int*));
for(j=0;j<div;j++)
{
B[j]=(int*)malloc(2*sizeof(int));
}

int *C;
C = (int*) malloc(ler*sizeof(int));

if( A != NULL )
{
for(i=0;i<tm;i++)
{
for(j=0;j<tm;j++)
{
A[i][j]=0;
}
}
}

FILE *stream = fopen("REL","r");
if(stream == NULL)
{
printf("Can't open %s\n","REL");
exit(1);
}

for(i=0;i<ler;i++)
{
fscanf(stream,"%255s",string);
C[i]=std::stoi(string);
}
fclose(stream);

if( C != NULL )
{
k=0;
for(i=0;i<div;i++)
{
for(j=0;j<2;j++)
{
B[i][j]=C[k];
k++;
}
}
free(C);
}
//////////////////////////////////////////
if( B != NULL )
{
for(i=0;i<div;i++)
{
a=B[i][0];
b=B[i][1];
std::cout<<a<<"\t"<<b<<"\n";
A[b][a]=A[b][a]+1;
A[a][b]=A[a][b]+1;
}
free(B);
}
//////////////////////////////////////////
for(i=0;i<tm;i++)
{
for(j=0;j<tm;j++)
{
cout<<A[i][j];
}
cout<<"\n";
}
free(A);
}

最佳答案

我认为您需要对外部接受的值进行检查(使用 assert 可能是一个开始),例如:

  • 正在检查tm>0
  • ler>0
  • C[i]<tm
  • A[i]!=NULL
  • B[i]!=NULL

正如评论中提到的,这是一个相差一的问题:

在 LER 中,值应该是从 0 到 tm-1
或使用B[i][j]=C[k]-1;在第 88 行

关于c++ - C 中的另一个 coredump 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30880655/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com