- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有麻烦了,每次我的函数调用“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 会很有帮助,因为您提供了名为 desenfileirar
和 caminhar
的函数的源代码,但您还使用了名为 criar
、enfileirar
的函数, 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/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!