私の関数が「desenfileirar」を呼び出すたびに、いくつかのブレークポイントがありました。誰でも私を助けることができますか?アリが移動したパスを意味する 2 次元配列を出力する必要があります。(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);