gpt4 book ai didi

c - 释放队列的第一个元素时的 SIGTRAP

转载 作者:太空宇宙 更新时间:2023-11-04 08:56:58 25 4
gpt4 key购买 nike

我有麻烦了,每次我的函数调用“desenfileirar”时我都有一些断点。谁能帮我?我需要打印一个二维数组,表示一只 Ant 走过的路径。它需要从 (0,0) 开始并到达 (9,9)。我获得了成功,仅在调试器中使用“handle SIGTRAP nostop”命令。我实现了 BFS 算法,但未能成功将元素出队。这意味着内存违规,我相信

Program received signal SIGTRAP, Trace/breakpoint trap.
In ntdll!TpWaitForAlpcCompletion () (C:\Windows\system32\ntdll.dll)
In ntdll!RtlLargeIntegerDivide () (C:\Windows\system32\ntdll.dll)
In ntdll!RtlCopyExtendedContext () (C:\Windows\system32\ntdll.dll)
#10 0x004014cd in desenfileirar (F=0x28fe74) at I:\Exercício-1\Formiga.c:60
I:\Exercício-1\Formiga.c:60:1306:beg:0x4014cd
At I:\Exercício-1\Formiga.c:60

代码如下:

#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include "Fila.h"

struct st_no{
int linha; //coordinate from array line
int coluna; //coordinate from array column
int plinha; //coordinate from the generator of line (father)
int pcoluna; //coordinate from the generator of column (father)
FILA *prox;
};

void geraFilhos(FILA **Q, FILA **gerador, short int *matriz[N][N], int *visitados[N][N]);
void print_shortest_path(FILA **F, FILA **src, FILA **dst);

/**=========================== FUNÇÕES DA FILA ===========================**/
bool vazia(FILA **F){
return *F == NULL;
}

void criar(FILA **F){
*F = NULL;
}

void enfileirar(FILA **F, int i, int j, int paiI, int paiJ){
FILA *novo, *P;
novo = (FILA *)malloc(sizeof(FILA*));
novo->linha = i;
novo->coluna = j;
novo->plinha = paiI;
novo->pcoluna = paiJ;
novo->prox = NULL;

if(*F == NULL)
*F = novo;
else{
P = *F;
while(P->prox != NULL)
P = P->prox;
P->prox = novo;
}
}

FILA *desenfileirar(FILA **F){
FILA *P, *ret = (FILA*)malloc(sizeof(FILA));
if(vazia(F)){
return NULL;
}
else{
P = *F;
ret->linha = P->linha;
ret->coluna = P->coluna;
ret->plinha = P->plinha;
ret->pcoluna = P->pcoluna;
ret->prox = NULL;
*F = (*F)->prox;
free(P); // HERE I HAD THE BREAKPOINTS
}
return ret;
}

FILA *buscar(FILA **L, int i,int j){
FILA *P;

P = *L;
while(P != NULL){
if(P->linha == i && P->coluna == j)
return P;
P = P->prox;
}
return NULL;
}

void imprimir(FILA **F){
FILA *P;

P = *F;
printf("Fila:\n");
while(P != NULL){
printf("(%i,%i)", P->linha, P->coluna);
printf("(%i,%i)\n\n", P->plinha, P->pcoluna);
P = P->prox;
}
}

FILA *atribuicao(FILA **F, int i, int j){
FILA *aux = (FILA*)malloc(sizeof(FILA));
aux->linha = i;
aux->coluna = j;
aux->prox = NULL;
*F = aux;
return *F;
}

/**=========================== FUNÇÕES QUE ACHAM O CAMINHO ===========================**/

void caminhar(short int *matriz[N][N], FILA *inicio,FILA *objetivo){
FILA *abertos, *x, *fechado;
int i, j, *visitados[N][N];

criar(&abertos);
criar(&fechado);

for(i = 0; i < N; i++){
for(j = 0; j < N; j++){
visitados[i][j] = 0;
}
}

inicio->plinha = -1;
inicio->pcoluna = -1;
enfileirar(&abertos,inicio->linha,inicio->coluna,inicio->plinha,inicio->pcoluna);
while(!vazia(&abertos)){
x = desenfileirar(&abertos);
enfileirar(&fechado,x->linha,x->coluna,x->plinha,x->pcoluna);
if(x->linha == objetivo->linha && x->coluna == objetivo->coluna){
printf("Parou aqui!\n\n\n");
break;
}
else{
geraFilhos(&abertos,&x,matriz,visitados);
visitados[x->linha][x->coluna] = 1;
}
}
imprimir(&fechado);
print_shortest_path(&fechado,&inicio,&objetivo);
}

void geraFilhos(FILA **Q, FILA **gerador, short int *matriz[N][N], int *visitado[N][N]){
FILA *P = *gerador;

if((P->coluna+1 < N)&&(matriz[P->linha][P->coluna+1] == 0) && (visitado[P->linha][P->coluna+1] == 0)){//direita
P->plinha = P->linha;
P->pcoluna = P->coluna;
P->coluna++;
enfileirar(Q,P->linha,P->coluna,P->plinha,P->pcoluna);
P->coluna--;
}
if((P->linha+1 < N)&&(matriz[P->linha+1][P->coluna] == 0) && (visitado[P->linha+1][P->coluna] == 0)){//baixo
P->plinha = P->linha;
P->pcoluna = P->coluna;
P->linha++;
enfileirar(Q,P->linha,P->coluna,P->plinha,P->pcoluna);
P->linha--;
}
if((P->coluna-1 >= 0)&&(matriz[P->linha][P->coluna-1] == 0) && (visitado[P->linha][P->coluna-1] == 0)){//esquerda
P->plinha = P->linha;
P->pcoluna = P->coluna;
P->coluna--;
enfileirar(Q,P->linha,P->coluna,P->plinha,P->pcoluna);
P->coluna++;
}
if((P->linha-1 >= 0)&&(matriz[P->linha-1][P->coluna] == 0) && (visitado[P->linha-1][P->coluna] == 0)){//cima
P->plinha = P->linha;
P->pcoluna = P->coluna;
P->linha--;
enfileirar(Q,P->linha,P->coluna,P->plinha,P->pcoluna);
P->linha++;
}
}

void print_shortest_path(FILA **F, FILA **src, FILA **dst){
FILA *P, *Q;
Q = *F;
printf("CAMINHO: \n\n\n");

printf("(%d,%d)\n", (*dst)->linha,(*dst)->coluna);
while((*dst)->linha != (*src)->linha && (*dst)->coluna != (*src)->coluna){
P = buscar(&Q,(*dst)->linha,(*dst)->coluna);
printf("(%d,%d)\n", P->plinha,P->pcoluna);
(*dst)->linha = P->plinha;
(*dst)->coluna = P->pcoluna;
}
printf("(%d,%d)\n", (*src)->linha,(*src)->coluna);
}

/**=========================== MAIN ===========================**/

#include <stdio.h>
#include <stdlib.h>
#include "Fila.h"

/*
*
*/
void caminhar(short int *matriz[N][N], FILA *inicio,FILA *objetivo);

int main(int argc, char** argv) {
FILE *arq = fopen("teste.txt", "r");
int i, j;
int tabuleiro[N][N];

FILA *inicial, *objetivo;

criar(&inicial);
criar(&objetivo);

inicial = atribuicao(&inicial,0,0);
objetivo = atribuicao(&objetivo,N-1,N-1);

if(!arq){
printf("Nao deu pra ler!");
}else{
for(i = 0; i < N; i++){
for(j = 0; j < N; j++){
fscanf(arq,"%d",&tabuleiro[i][j]);
}
}

printf("INICIO: (0,0)\n");
printf("OBJETIVO: (%d,%d)\n\n", N, N);

caminhar(tabuleiro,inicial,objetivo);
}
system("PAUSE");
return (EXIT_SUCCESS);
}

/**=========================== FILA.H ===========================**/

#include <stdlib.h>
#include <stdbool.h>
#define N 10

typedef struct st_no FILA;

void criar(FILA **F);
void destruir(FILA **F);
bool vazia(FILA **F);
void enfileirar(FILA **F, int i, int j, int paiI, int paiJ);
FILA *desenfileirar(FILA **F);
void imprimir(FILA **F);
FILA *atribuicao(FILA **F, int i, int j);

最佳答案

有一个 complete, compilable example 会很有帮助,因为您提供了名为 desenfileirarcaminhar 的函数的源代码,但您还使用了名为 criarenfileirar 的函数, vazia, geraFilhos, imprimir, and print_shortest_path, 并且你使用一个结构名 FILA 不提供定义。此外,您永远不会显示 malloc(),但会显示对 free() 的调用。

caminhar() 开头的 free() 本质上是没有意义的(调用 free(NULL) 保证不会做任何事情, 并明确设置 *f = NULL only if *f is already NULL? Also, I'm sure you'll agree, no helpful ),但无害。

我看到的最明显的问题是您的 ret 是指向 FILA 的指针,但您在使用它时没有为其分配存储空间。这意味着当您进入 desenfileirar() 函数时,会创建一个名为 ret 的变量,其中有足够的存储空间用于指向 FILA 的指针,但是没有明确分配的值,然后您将其视为有效指针,并写入它。 (然后你也返回它......)这是未定义的行为,多次发生,对你来说幸运的是,这次你很幸运,它在测试期间失败了。对此有不止一种可能的解决方案,但在没有看到您的整个程序的情况下,我不知道该推荐哪一种。 (尽管如此,最可能的解决方案是在开始使用它之前插入一行内容为 ret=malloc(sizeof *ret);。)

**UPDATE**

现在您已经发布了额外的代码,下面是我的进一步分析。这似乎是几个源文件,但显然仍然不可编译,并且缺少 Fila.h

enfileirar() 中,您正在使用 malloc() 为指向 FILA 的指针分配足够的存储空间,而不是为一个 FILA。在 desenfileirar() 中,在调用 malloc() 时第一行有语法错误。此外,如果 *F==NULL,则会发生内存泄漏。不要为 ret 存储 malloc() 直到你需要它。您还在 free() 行上有一个随机的 2,并且您忘记初始化 ret->prox=NULL,这将在以后的某个随机点导致未定义的行为。在 atribuicao() 中,您忘记了初始化 aux->prox=NULL

您的问题几乎肯定源于您忘记初始化新 FILA 的 prox 元素的两个地方。这是因为malloc()返回的内存不是空白,内容不确定。因此,如果您不设置 prox=NULL,当您遍历列表时,您将从末尾走到完全随机的内存中。

关于c - 释放队列的第一个元素时的 SIGTRAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16473570/

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