双向链表中的访问冲突

时间:2013-02-15 03:32:37

标签: c++ access-violation doubly-linked-list

我之前发布过,并且在弄清楚如何深层复制我的双向链表方面得到了很好的帮助。我现在遇到访问冲突“0xC000000005”的问题,我认为这是由于尝试依赖空指针引起的。这是一个家庭作业,我是C ++的新手,所以我只想帮助弄清楚我哪里出错了,而不是有人给我工作代码。

这是我的教授给我的界面。我不能以任何方式修改它。

#ifndef TEXTANALYZER_H
#define TEXTANALYZER_H

#include <iostream>
#include <string>

using namespace std;

class TextAnalyzer {
private:

/*
* Class: Node
*
* This class represents a node in a sorted doubly linked list that stores a
* list of words and their frequency of occurrency.
*/
class Node {
public:
string word;
int wordFrequency;
Node* previous;
Node* next;

Node(const string& word,
     const int wordFrequency,
     Node* const previous,
     Node* const next)
: word(word),
      wordFrequency(wordFrequency),
      previous(previous),
      next(next)
    {}
}; // end ListNode
/*********************************************************************/

Node* head;
Node* tail;


/*
* Releases all the memory allocated to the list.
*/
void releaseNodes();

/*
* Makes a deep copy of the object.
*/
void copyNodes(Node* const copyHead);

/*
* Returns a populated Node.
* Throws a bad_alloc exception if memory is not allocated.
*/
Node* createNode(const string& word,
             const int wordFrequency,
             Node* const previous,
             Node* const next);

public:
/* 
* Initializes head and tail, each to a dymmy node.
*/
TextAnalyzer();

/*
* Makes a deep copy of the object passed in.
* Calls copyNodes() to do the actual work.     
*/
TextAnalyzer(const TextAnalyzer& copyObject);

/* 
* Releases all the memory allocated to the object.
* Calls the releaseNodes() method to do the actual work.
*/
~TextAnalyzer();

/* 
* Makes a deep copy of the rhs object.
*/
TextAnalyzer operator =(const TextAnalyzer& assignObject);

/*
* Inserts the word in a sorted order into the list. 
*
* If no Node exists with that initial character, one is added in
* sorted order. If one does exist (same word), then the word frequency
* of that word is incremented by one.
*/
void insertWord(const string& word);

/*
* Returns a count of all the words in the list.
*/
int wordCount() const;

/* 
* Returns a count of all the words with the initial character.
*/
int wordCountWithInitialCharacter(const char startsWith);

/*
* Returns a description of the object. The string is formatted as:
* [A words:]
*     [<word>(<count>)]
*     [<word>(<count>)]
*     ...
*
* [B words:]
*     [<word>(<count>)]
*     [<word>(<count>)]
*     ...
*
*...
*/
string toString() const;

};

#endif 

这是我的班级定义:

#include "textAnalyzer.h"
#include <string>
#include <iostream>
#include <sstream>

TextAnalyzer::Node* TextAnalyzer::createNode(const string& word, const int wordFrequency, 
Node* const previous, Node* const next)
{
return new Node(word, wordFrequency, previous, next);
}
void TextAnalyzer::releaseNodes()
{
Node* del = tail;

while(tail != NULL)
{
    tail = tail->previous;
    tail->next = del;
    delete del;
    del = tail;
}

delete [] head;
delete [] tail;

head = tail = del = NULL;
}

void TextAnalyzer::copyNodes(Node* const copyHead)
{
head = new Node(*copyHead);
Node* iter = head->next;

for(Node* np = copyHead->next; np != NULL; np = np->next)
{
iter->next = new Node(*np);
iter = iter->next;
}

iter = NULL;
}

TextAnalyzer::TextAnalyzer():head(createNode("0",0,NULL,NULL)),tail(head)
{}

TextAnalyzer::TextAnalyzer(const TextAnalyzer& copyObject)
{
copyNodes(copyObject.head);
}

TextAnalyzer::~TextAnalyzer()
{
releaseNodes();
}

TextAnalyzer TextAnalyzer::operator=(const TextAnalyzer& assignObject)
{
return TextAnalyzer(assignObject);
}

void TextAnalyzer::insertWord(const string& word)
{
Node* iter = head->next;

while(iter != NULL)
{
if(iter->word == word)
    iter->wordFrequency++;
else if(iter->word[0] == word[0] && iter->next != NULL)
{
    Node* temp = iter->next;
    iter->next = createNode(word, 1, iter, temp);
    iter = iter->next;
    temp->previous = iter;

    temp = NULL;
}
else if(iter->word[0] == word[0] && iter->next == NULL)
{
    iter = createNode(word, 1, tail, NULL);
    tail = iter;
}
else
    iter = iter->next;
}

iter = NULL;
}

int TextAnalyzer::wordCount() const
{
Node* iter = head->next;
int count = 0;

while(iter != NULL)
count++;

return count;
}

int TextAnalyzer::wordCountWithInitialCharacter(const char startsWith)
{
Node* iter = head->next;
int count = 0;

for(int i = 0; i < wordCount(); i++)
{
if(startsWith == iter->word[0])
    count++;

iter->previous = iter;
iter = iter->next;
}

iter = NULL;

return count;
}

string TextAnalyzer::toString() const
{
Node* iter = head->next;
string desc = "List of words: \n";
ostringstream convert;

for(int i = 0; i < wordCount(); i++)
{
convert << iter->word[0] << " words:\n"
        << iter->word    << "(" 
        << iter->wordFrequency
        << ")\n";
iter->previous = iter;
iter = iter->next;
}

iter = NULL;

return desc + convert.str();
}

根据调试器,我的releaseNodes()方法出现问题。我添加了一条评论,指出它出现的特定行:

void TextAnalyzer::releaseNodes()
{
Node* del = tail;

while(tail != NULL)
{
    tail = tail->previous; //debugger flags this line when error occurs
    tail->next = del;
    delete del;
    del = tail;
}

delete [] head;
delete [] tail;

head = tail = del = NULL;
}

我不确定导致访问冲突的原因,但就像我说我是C ++新手一样。任何和所有的帮助表示赞赏。

3 个答案:

答案 0 :(得分:1)

您未head and tail分配new [],因此请勿按delete []

删除delete [] head; delete [] tail;
delete head;
delete tail;

应该是:

new

delete []与{{1}}混合为未定义的行为。

答案 1 :(得分:0)

除了billz的答案之外,你的删除循环还有些可疑。我理解它的方式,你想要删除你的列表到前面。是什么导致你现在拥有的循环?看起来更自然的方法就是:保持curr指针,从tail开始。然后循环:减少curr,删除curr->nextcurrhead时停止。然后删除head

答案 2 :(得分:0)

在copyNodes中,您还需要设置上一个指针