我收到一个奇怪的错误,即使我正在调用free(),该错误仍在一种称为dequeue的方法中使用,该方法从优先级队列中删除元素,该功能可以正常工作,但当队列为空时,错误为而不是定义的错误消息。
下面的代码和错误:
void enqueue(string item, long time)
{
cout<<"Please Enter Entry and Time of element you wish to enqueue.."<<endl;
PRecord *tmp, *q;
tmp = new PRecord;
tmp->entry = item;
tmp->time = time;
if(front==NULL){ //if queue is empty
tmp->link = front;
front = tmp;
}
if(time<=front->time){ //if newer priority item comes through put it at front of queue
tmp->link = front;
front = tmp;
}
else {
q = front;
while (q->link != NULL && q->link->time <= time)
q=q->link;
tmp->link = q->link;
q->link = tmp;
}
}
int dequeue()
{try{
PRecord *tmp; //pointer to front of queue
if(front!=NULL){
tmp = front;
cout<<"Deleted item is: "<<endl;
displayRecord(tmp); //outputs record details
front = front->link; //link to the front
free(tmp); //dealloc memory no longer used
}
else{
cerr<<"Queue is empty - No items to dequeue!"<<endl;
}
} catch(...){
return(0);
}
}
*** glibc detected *** ./3x: double free or corruption (fasttop): 0x0000000000bb3040 ***
======= Backtrace: =========
/lib64/libc.so.6[0x35a8675dee]
/lib64/libc.so.6[0x35a8678c3d]
./3x[0x401275]
./3x[0x400f69]
/lib64/libc.so.6(__libc_start_main+0xfd)[0x35a861ed1d]
./3x[0x400d59]
======= Memory map: ========
00400000-00402000 r-xp 00000000 08:06 2623369 /home/std/rc14lw/lab5excercisefinal/3x
00601000-00602000 rw-p 00001000 08:06 2623369 /home/std/rc14lw/lab5excercisefinal/3x
00bb3000-00bd4000 rw-p 00000000 00:00 0 [heap]
35a8200000-35a8220000 r-xp 00000000 08:01 1310722 /lib64/ld-2.12.so
答案 0 :(得分:1)
问题是您将第一个条目两次插入到列表中,然后将其删除两次,即打印错误时。
您首先检查列表是否为空,如果是,则将新条目添加为第一项。
然后,您将新条目的时间与第一个条目的时间进行比较,如果是第一个条目,则该条目是相同的条目,然后再次插入该条目。
换句话说:您需要在此处输入“ else if”:
if(front==NULL){ //if queue is empty
tmp->link = front;
front = tmp;
} else if (time<=front->time){ // <-- there is the else you need to add
tmp->link = front;
front = tmp;
}
答案 1 :(得分:1)
当队列为空时,添加第一个项目后,您应该从enqueue
函数返回,如果没有它,则使front
指向自身。
解决方案:
if(front==NULL)
{ //if queue is empty
tmp->link = front;
front = tmp;
return; // <-- added
}
没有回报,您会遇到问题,因为front
指向自己:
通过这些行,您可以创建第一个项目:
tmp = new PRecord;
tmp->entry = item;
tmp->time = time;
if(front==NULL){ //if queue is empty
tmp->link = front;
front = tmp;
}
然后检查以下条件if(time<=front->time){
,该条件返回true,很明显,time
相等,则此行
tmp->link = front;
使front
指向自身,因为tmp == front
和front
不为NULL。这就是您的dequeue
函数不起作用的原因。