- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我查看了其他类似的问题,但无法找出导致此错误的原因。我正在编写一个 C++ 程序来使用 Union by rank 和路径压缩来实现 Kruskal 的最小生成树算法。它正确打印 MST 的边缘,但包括路径压缩部分会导致此错误:
* `./kruskal' 中的错误:free():无效指针:0x0000000001650d00 *
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef pair<int, pair<int,int> > pip;
typedef pair<int,int> pii;
class UnionFind {
vector <int> parent,rank;
public:
UnionFind(int n){
parent.resize(n);
rank.resize(n);
for (int i=0;i<n;i++) { //initialize all parents and ranks
parent[i]=i;
rank[i]=0;
}
}
int find (int x){
int root=x,y;
while (parent[root]!=root) {
root=parent[root];
}
//uncommenting the following loop gives the error
/*while (parent[x]!=root){ //path compression
y=parent[x];
parent[x]=root;
x=y;
}*/
return root;
}
void unite (int x,int y) {
x=find(x);
y=find(y);
if (rank[x]>=rank[y]){
parent[y]=x;
if (rank[x]==rank[y])
rank[x]++;
}
else parent[x]=y;
}
};
int main() {
int v1,v2,w,n,m;
cout<<"Enter number of vertices, edges: ";
cin>>n>>m;
vector <pip> edges(m);
UnionFind uf(n);
cout<<"Enter edges in the form v1,v2,w: ";//w=length of edge
for (int i=0;i<m;i++) {
cin>>v1>>v2>>w;
edges[i]=pip(w,pii(v1,v2));
}
sort (edges.begin(),edges.end()); //sort edges in increasing order or lengths
cout<<"MST: edges \n";
for (int i=0;i<m;i++){
if (uf.find(edges[i].second.first)!=uf.find(edges[i].second.second)) {
uf.unite (edges[i].second.first,edges[i].second.second);
cout<<edges[i].second.first<<"--"<<edges[i].second.second<<endl;
}
}
return 0;
}
通过查看 gdb 的回溯,它似乎是 vector/类析构函数的问题:
(gdb) backtrace
#0 0x00007ffff74ab267 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:55
#1 0x00007ffff74aceca in __GI_abort () at abort.c:89
#2 0x00007ffff74eebf3 in __libc_message (do_abort=do_abort@entry=1,
fmt=fmt@entry=0x7ffff7607168 "*** Error in `%s': %s: 0x%s ***\n")
at ../sysdeps/posix/libc_fatal.c:175
#3 0x00007ffff74f6c09 in malloc_printerr (ptr=<optimized out>,
str=0x7ffff76032ba "free(): invalid pointer", action=1) at malloc.c:4965
#4 _int_free (av=<optimized out>, p=<optimized out>, have_lock=0) at malloc.c:3834
#5 0x00007ffff74fa83c in __GI___libc_free (mem=<optimized out>) at malloc.c:2950
#6 0x0000000000402cfc in __gnu_cxx::new_allocator<int>::deallocate (this=0x7fffffffdf58,
__p=0x618d00) at /usr/include/c++/5/ext/new_allocator.h:110
#7 0x0000000000402588 in __gnu_cxx::__alloc_traits<std::allocator<int> >::deallocate (__a=...,
__p=0x618d00, __n=10) at /usr/include/c++/5/ext/alloc_traits.h:185
#8 0x0000000000401ce6 in std::_Vector_base<int, std::allocator<int> >::_M_deallocate (
this=0x7fffffffdf58, __p=0x618d00, __n=10) at /usr/include/c++/5/bits/stl_vector.h:178
#9 0x00000000004018a8 in std::_Vector_base<int, std::allocator<int> >::~_Vector_base (
this=0x7fffffffdf58, __in_chrg=<optimized out>) at /usr/include/c++/5/bits/stl_vector.h:160
#10 0x0000000000401498 in std::vector<int, std::allocator<int> >::~vector (this=0x7fffffffdf58,
__in_chrg=<optimized out>) at /usr/include/c++/5/bits/stl_vector.h:425
#11 0x000000000040140b in UnionFind::~UnionFind (this=0x7fffffffdf40, __in_chrg=<optimized out>)
at kruskal.cpp:7
#12 0x0000000000401023 in main () at kruskal.cpp:47
有人可以解释一下当我在 while 循环中包含路径压缩时有什么中断吗?
编辑:给出错误的示例输入:
10 14
1 5 1
1 8 10
2 3 2
4 1 4
4 8 1
5 6 3
6 2 1
6 3 3
6 7 7
6 9 1
8 5 5
8 9 9
9 10 2
10 7 1
最佳答案
只有10个节点,但有9-10条边和10-7条边,所以你访问了 vector 的范围之外。在存储之前尝试将 1-origin 输入转换为 0-origin。
尝试
for (int i=0;i<m;i++) {
cin>>v1>>v2>>w;
edges[i]=pip(w,pii(v1-1,v2-1));
}
代替
for (int i=0;i<m;i++) {
cin>>v1>>v2>>w;
edges[i]=pip(w,pii(v1,v2));
}
和
cout<<(edges[i].second.first+1)<<"--"<<(edges[i].second.second+1)<<endl;
代替
cout<<edges[i].second.first<<"--"<<edges[i].second.second<<endl;
关于时间:2018-01-08 标签:c++free(): invalid pointer error while path compression (union by rank),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36616441/
这个问题在这里已经有了答案: How do free and malloc work in C? (8 个答案) 关闭 8 年前。 如果你使用malloc()为4个整数分配内存,它不应该返回第一个整
首先,介绍一下背景知识,这样您就不会认为我在尝试做一些疯狂的事情: 我正在尝试调试由其他人编写的 C 库中的崩溃。崩溃看起来像这样: TheProgram(44365,0x7fff75996310)
我正在 cstdlib malloc() 和 free() 函数之上创建自定义内存分配器(出于性能原因)。分配器位于一个简单的类中,该类存储一些内存缓冲区和其他参数。我想将释放内存的方法命名为 fre
我一直在解决这个练习,我不知道从哪里开始: 语言 B 是上下文无关的;语言 C 是 B 的子集:C 是否是上下文无关的?证明或反驳。 我试过使用闭包属性: C = B - ( (A* - C) ∩ B
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
如果我想获得在 C 中进行 malloc 的指针的所有权,则 docs for the Python cffi package和 this answer假设使用 ffi.gc 和 lib.free 作
#include #include struct node { int value; struct node* next; }; typedef struct node node_
众所周知,Oracle 在 Java 11 中更改了 Java 许可证,要求 JDK 的商业用途需要付费许可证。然而,使用 OpenJDK 仍然是免费的。 我的 PC 上有一个 JDK 11 文件夹,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我是 C 的新手,在 Linux 中使用带有开关 gcc -g -std=c89 -Wall ... 的 gcc4.4.6 进行编程,我在许多函数深处遇到了这个错误我的程序名为 compute: **
在多线程编程中,我们可以找到两个或多个线程/任务之间的数据传输同步的不同术语。 什么时候我们可以说某个算法是: 1)Lock-Free 2)Wait-Free 3)Wait-Freedom 我明白无锁
我正在尝试使用我通过 malloc() 手动分配的数组来运行程序。我在程序末尾释放()这个数组,但我不断收到错误消息 *** glibc detector *** ./test: double fre
我将 libxml2 与 libxslt 一起用于 C++ 程序的 XML 处理。为了使用 XSL 转换 XML 文档,我使用了以下函数(删除了错误处理): xmlDocPtr transformXm
new/delete 关键字使用免费商店 malloc/free 关键字是使用堆 我看到某处写着new 使用malloc。怎么会这样?它们不在内存段中使用? 其次,我看到某处写道我们不能在new 之后
我有这个简单的代码,我想在 tutorialspoint.com 上运行 #include using namespace std; class Vehicle { string vehic
我需要创建一个函数来删除 c 中链表的前 n 个节点,并返回删除的节点数。如果列表小于 n,它应该变为空。 另外,我不能使用递归。 使用现在的代码,它可以工作,但我没有释放“已删除”节点的内存。如果我
我需要调试这段代码的帮助。我知道问题出在 malloc 和 free 中,但找不到确切的位置、原因和解决方法。请不要回答:“使用 gdb”,仅此而已。我会使用 gdb 来调试它,但我仍然不太了解它并且
这个问题在这里已经有了答案: Unable to free const pointers in C (12 个答案) 关闭 8 年前。 将 C++11 代码连接到某些 C 回调,我必须传递 cons
这是出于好奇,我试图找到我对之前问题的疑问的答案,但他们似乎没有答案。所以在这里问,我只是写了一个代码,我试图将内存分配给一个 int 指针(以填充一个数组)并将 int 值扫描到它。完成数组后,我想
我有两个免费的单子(monad),用于不同上下文中的不同操作。但是,如果特定操作位于上下文中,则一个(主要)DSL 需要包含另一个(action)DSL: import Control.Monad.F
我是一名优秀的程序员,十分优秀!