0

我正在尝试使用priority_queue,并且程序不断失败并出现错误消息HEAP CORRUPTION DETECTED。

以下是片段:

class CQueue { ...
              priority_queue<Message, deque<Message>, less<deque<Message>::value_type> > m_messages;
...};

类 Message 具有重载的运算符 > 和 <

在这里我填满队列:

CQueue & operator+=(Message &rhv)
{
    m_messages.push(rhv);  //This is where program fails
    return *this;
}

在主程序中:

string str;
CQueue pq;
for(int i = 0; i < 12; ++i)
{
    cin >> str;

    Message p(str.c_str(), rand()%12); //Create message with random priority
    pq += p;                           //add it to queue
}

我不知道似乎是什么问题。当我推送大约 8 个项目时会发生这种情况,并且在线失败

    push_heap(c.begin(), c.end(), comp);

在 <队列>

:(

这是消息类的定义——非常简单:

#pragma once 

#include <iostream>
#include <cstring>
#include <utility>

using namespace std;

 class Poruka
{
private:
char *m_tekst;
int  m_prioritet;
public:
Poruka():m_tekst(NULL), m_prioritet(-1){}

Poruka(const char* tekst, const int prioritet)
{
    if(NULL != tekst)
    {
    //  try{
            m_tekst = new char[strlen(tekst) + 1];
        //}
        //catch(bad_alloc&)
    //  {
    //      throw;
    //  }


        strcpy(m_tekst, tekst);
    }
    else
    { 
    //  try
    //  {
            m_tekst = new char[1];
    //  }
    //  catch(bad_alloc&)
    //  {
    //      throw;
    //  }

        m_tekst[0] = '\0';
    }
    m_prioritet = prioritet;
}

Poruka(const Poruka &p)
{
    if(p.m_tekst != NULL)
    {
        //try
        //{
            m_tekst = new char[strlen(p.m_tekst) + 1];
        //}
        //catch(bad_alloc&)
        //{
        //  throw;
        //}

        strcpy(m_tekst, p.m_tekst);
    }
    else
    {
        m_tekst = NULL;
    }
    m_prioritet = p.m_prioritet;
}

~Poruka()
{
        delete [] m_tekst;
}

Poruka& operator=(const Poruka& rhv)
{
    if(&rhv != this)
    {
        if(m_tekst != NULL)
            delete [] m_tekst;

    //  try
        //{
            m_tekst = new char[strlen(rhv.m_tekst + 1)];
        //}
        //catch(bad_alloc&)
        //{
        //  throw;
        //}

        strcpy(m_tekst, rhv.m_tekst);
        m_prioritet = rhv.m_prioritet;
    }
    return *this;
}

friend ostream& operator<<(ostream& it, const Poruka &p)
{
    it << '[' << p.m_tekst << ']' << p.m_prioritet;
    return it;
}

//Relacioni operatori

friend inline bool operator<(const Poruka& p1, const Poruka& p2)
{
    return p1.m_prioritet < p2.m_prioritet;
}

friend inline bool operator>(const Poruka& p1, const Poruka& p2)
{
    return p2 < p1;
}

friend inline bool operator>=(const Poruka& p1, const Poruka& p2)
{
    return !(p1 < p2);
}

friend inline bool operator<=(const Poruka& p1, const Poruka& p2)
{
    return !(p1 > p2);
}

friend inline bool operator==(const Poruka& p1, const Poruka& p2)
{
    return (!(p1 < p2) && !(p2 < p1));
}

friend inline bool operator!=(const Poruka& p1, const Poruka& p2)
{
    return (p1 < p2) || (p2 < p1);
}

};

Poruka - 消息

4

2 回答 2

3

我认为问题在于您的Message对象保留指向原始 C 字符串的指针,然后这些字符串将被释放。在这些行中:

cin >> str;

Message p(str.c_str(), rand()%12);

在循环的每次迭代中,您都在读取一个新值 to str,这会使其方法返回的任何旧指针无效c_str(),因此您的旧消息指向无效数据。您应该更改您的Message对象,以便它将其字符串存储为 astd::string而不是 a char*。这将正确地将字符串复制到Message对象中。

或者,如果您不能更改Message类,则必须自己显式复制字符串,例如使用strdup()or malloc()/ new[]+ strcpy(),然后您必须记住稍后释放字符串副本。

于 2009-11-07T18:04:24.243 回答
1

我不能让它失败。
但是没有足够的信息来编译这一行:

push_heap(c.begin(), c.end(), comp);

但我看到的唯一问题是:

1) 您有一个默认构造函数,可以创建一个名称为 NULL 的 Poruka:

Poruka::Poruka():m_tekst(NULL), m_prioritet(-1){}

2)不是问题,因为您在大多数地方都对其进行了测试,但是在赋值运算符中您错过了测试:

Poruka::Poruka& operator=(const Poruka& rhv)
{
 ....
    // There was no test for 'rhv.m_tekst' being NULL here.
    //
    m_tekst = new char[strlen(rhv.m_tekst + 1)];
    strcpy(m_tekst, rhv.m_tekst);

笔记:

  • 您可以使用 std::string 类使您的代码更简单。
  • 如果您仍然想使用 char* ,那么如果您保证它永远不会为 NULL ,那么代码会更简单
  • 还有一个更简单的模式来定义标准的复制构造函数和赋值运算符。它被称为复制/交换 idium。
  • 您不需要定义所有这些关系运算符。在http://www.sgi.com/tech/stl/operators.html中有一组自动工作的模板。您只需要定义 operator< 和 operator==

这是复制/交换 idium 的示例

class X
{
     X(X const& copy)
     {
          // Do the work of copying the object
          m_tekst     = new char[strlen(copy.m_tekst) + 1];
          ...
          m_prioritet = copy.m_prioritet;
     }
     X& operator=(X const& copy)
     {
         // I like the explicit copy as it is easier to read
         // than the implicit copy used by some people (not mentioning names litb)
         //
         X  tmp(copy);  // Use the copy constructor to do the work

         swap(tmp);
     }
     void swap(X& rhs) throws ()
     {
         std::swap(this->m_tekst,   rhs.m_tekst);
         std::swap(this->prioritet, rhs.prioritet);
     }
于 2009-11-07T18:57:04.620 回答