- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我为我在学校上的数据结构类(class)创建了一个 C 头文件。我在 C 和 C++ 方面的编码经验有限。它包含使用链接列表构建堆栈以进行数据存储的代码。当我尝试使用 Visual Studio 2013 运行驱动程序以测试实现是否有效时,它会引发以下错误:
检测到堆损坏:在 0x006F8178 处的正常 block (#68) 之后。CRT 检测到应用程序在堆缓冲区结束后写入内存。
上述头文件中的代码如下:
#include <stdlib.h>
#include <stdbool.h>
//type definition for a single stack data node
typedef struct node
{
void *dataPtr; //create void pointer to user data
struct node *link; //create pointer to next node in stack
}STACK_NODE;
//type definition for stack head structure
typedef struct stack
{
int count; //location to hold number of entries in stack
STACK_NODE *top; //create pointer to top of stack
}STACK;
//function to create empty stack
STACK* createStack()
{
STACK *stack; //create a stack head node
stack = (STACK*)malloc(sizeof(STACK));
if (stack){
stack->count = 0; //set stack count to zero
stack->top = NULL; //initialize top pointer to null
}
return stack; //return address of node in dynamic memory
}
//function to push data onto stack
bool pushStack(STACK *stack, void *dataInPtr)
{
STACK_NODE *newPtr;
newPtr = (STACK_NODE*)malloc(sizeof(STACK_NODE*));
//if out of memory
if (!newPtr)
return false;
newPtr->dataPtr = dataInPtr; //assign data pointer to node
newPtr->link = stack->top; //set link to point to node currently indicated as stack top
stack->top = newPtr; //set top node to point to data in new node
++(stack->count); //add one to stack count
return true;
}
//function to pop data off the stack and recycle node
void* popStack(STACK *stack)
{
void *dataOutPtr;
STACK_NODE *temp;
//if stack is empty, return NULL
if (stack->count == 0)
dataOutPtr = NULL;
else{
temp = stack->top; //set temp to point to top node to be recycled
dataOutPtr = stack->top->dataPtr; //set dataOutPtr to point to value currently stored in the top node
stack->top = stack->top->link; //set top pointer to point to next node in stack
free(temp); //delete top node
--(stack->count);
}
return dataOutPtr; //return address of popped data
}
//function to retrieve data in top node
void* stackTop(STACK *stack)
{
//if stack is empty, return NULL
if (stack->count == 0)
return NULL;
//if top node contains data, return dataPtr
else
return stack->top->dataPtr;
}
//function to test if stack contains data
bool emptyStack(STACK *stack)
{
return (stack->count == 0);
}
//function to delete nodes in stack
STACK* destroyStack(STACK *stack)
{
STACK_NODE *temp;
//if stack is not empty
if (stack){
//delete all nodes in stack
while (stack->top != NULL){
//delete data entry in top node
free(stack->top->dataPtr);
temp = stack->top; //set temp to point to top node to be recycled
stack->top = stack->top->link; //set top node to point to next node
free(temp); //destroy top node
}
//stack now empty, destroy stack head node
free(stack);
}
return NULL;
}
驱动程序代码如下:
#include <stdio.h>
#include <stdlib.h>
#include "stackADT.h"
int main()
{
int a = 4;
int *dataPtr, *result, *popped;
STACK *stack1;
//create stack
stack1 = createStack();
//push value in a onto stack and output value on stack top
dataPtr = malloc(sizeof(int));
*dataPtr = a;
pushStack(stack1, dataPtr);
result = (int*)stackTop(stack1);
printf("Value in stack is: %d\n", *result);
//pop stack and output popped value
popped = (int*)popStack(stack1);
printf("Value popped off is: %d\n", *popped);
destroyStack(stack1);
return 0;
}
TBH,当我第一次看到错误消息时,我不知道它是什么意思。在做了一些初步研究后,我现在明白这是由于将数据写入堆缓冲区而没有首先分配足够的内存造成的。
虽然我不完全确定,但我相信错误发生在 popStack 和 destroyStack 函数中的行:
temp = stack->top;
并在以下行检测并报告:
free(temp);
我的想法是将当前栈顶节点(stack->top)包含的地址传递给一个临时节点,然后调用free()释放临时节点中的内存。由于两个指针的类型相同(即都是 STACK_NODE 类型),我不明白为什么赋值操作会触发堆损坏错误。
如果您能帮助解决问题,我们将不胜感激!
最佳答案
newPtr = (STACK_NODE*)malloc(sizeof(STACK_NODE*));
正在为“STACK_NODE 指针”分配足够的存储空间 - 通常为 4 个字节 - 但 sizeof (STACK_NODE) 为 8 个字节,因此当您使用 newPtr 时,您将覆盖内存。
正确的形式是
newPtr = (STACK_NODE*)malloc(sizeof(STACK_NODE));
关于c - 为什么我用链表实现的栈程序会出现堆损坏?以及如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28585454/
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我目前正在尝试制作一个非常简单的应用程序,它会根据一天中的时间问候。我的代码是: open System let read() = Console.Read() let readLine() = Co
我已经运行Elasticsearch服务很长时间了,但是突然遇到了以下情况 由以下原因导致:org.elasticsearch.index.translog.TranslogCorruptedExce
我对执行以下操作的 php 重定向脚本有一个奇怪的问题: 在用户的浏览器中植入 Cookie,或者读取现有 Cookie(如果有)。 将用户重定向到另一个网址(重定向的网址是原始网址中的参数,例如 h
我正在使用 iText 7.0.0(Java 风格),似乎表格单元格 HorizontalAlignment 被忽略,因为 CENTER 和 RIGHT 都不起作用。你能重现这个吗? see th
简而言之: 我有一个可以从多个线程访问的计数器变量。尽管我已经实现了多线程读/写保护,但该变量似乎仍然以不一致的方式同时写入,导致计数器结果不正确。 深入杂草: 我使用的“for 循环”会在后台触发大
我有一个 REST 项目,在访问控制服务类中保存用户的ArrayList。一切都工作正常,直到 REST Web 服务突然抛出 java.util.NoSuchElementException。单步查
已关闭。此问题不符合Stack Overflow guidelines 。它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
当我刷新页面时,我无法显示 voteUp/Down,因为如果我执行 voteUp/Down(+1 或 -1) 并刷新页面,这会再次返回 voteUp/Down (0)。过去我使用 JSON,但社区推荐
我正在为离散时间 CPU 调度模拟器编写代码。它只是生成流程并相应地安排它们。我目前正在实现 FCFS 计划。我理解离散时间模拟器的本质,但我在用 C++ 实现时遇到了麻烦。 问题出现在handleN
尝试使用 yum 部署包时出现错误: 2016-07-07 14:14:31,296 - ERROR - error: rpmdb: BDB0113 Thread/process 6723/1
我有一个简单的同步队列 template class SynchronisedQueue { public: void Enqueue(const T& d
我正在使用 hadoop 0.20.append 和 hbase 0.90.0。我将少量数据上传到 Hbase,然后出于评估目的杀死了 HMaster 和 Namenode。在此之后,我向 Hbase
我使用 symfony 框架 1.4 创建了一个网站。我正在使用 sfguard 进行身份验证。 现在,这在 WAMP (windows) 上运行良好。我可以在不同的浏览器上登录多个帐户并使用该网站。
目前我已经实现了 HashMap private static Map cached = new HashMap(); 和 Item 是一个具有属性的对象 Date expireTime 和 byte
我试图将 2 个不同的 WPF 控件绑定(bind)到 ViewModel 中的同一属性,即 CheckBox.IsChecked 和 Expander.IsExpanded。我想要实现的行为是让 C
我希望这是一个简单的问题,但我没有找到答案。 我想让 build.gradle 文件通过替换某些变量来设置我的 Spring Boot 应用程序中的版本。这与广告一样有效: def tokens =
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
这个问题在这里已经有了答案: In a fragment shader, why can't I use a flat input integer to index a uniform array o
我已经下载了 OSM 世界地图。解析时出现异常: osm bound changeset (...) changeset Exception in thread "main" org.xml.sax.
我是一名优秀的程序员,十分优秀!