【发布时间】:2011-03-01 22:01:53
【问题描述】:
我有一个模板类 OList,它是一个有序链表(元素按升序排列)。它有一个名为void insert(const T & val) 的函数,可以将一个元素插入到列表中的正确位置。例如,如果我有一个值为 { 1,3,5 } 的整数 OList 并调用 insert(4),则 4 将插入到 3 和 5 之间,从而使 OList { 1,3,4,5 }。
现在,在将元素插入 EMPTY OLList 时,我的工作正常。但是,当我使用以下代码时:
OList<char> list;
for (int i = 0; i < 3; i++) {
list.insert('C');
list.insert('A');
}
printInfo(list);
printList(list) 应该输出:
List = { A,A,A,C,C,C } Size = 6 Range = A...C
相反,它输出:
List = { A,C,C,C,
随后出现运行时错误。
我已经搞砸了大约 5 个小时,但我似乎没有取得任何进展(除了得到不同的错误输出和错误)。
有三段相关的代码:OList 的默认构造函数,operator
// default constructor
OList() {
size = 0;
headNode = new Node<T>;
lastNode = new Node<T>;
headNode->next = lastNode;
lastNode->next = NULL;
}
void insert(const T & val) {
if ( isEmpty() ) {
lastNode->data = val;
}
else {
Node<T> * pre = headNode;
Node<T> * insertPoint = findInsertPoint(pre, val);
Node<T> * insertNode = new Node<T>;
insertNode->data = val;
insertNode->next = insertPoint;
pre->next = insertNode;
// why is pre equal to headNode?
// I thought I changed that when using it
// with findInsertPoint()
cout << (pre == headNode) << endl;
}
size++;
}
// returns the node AFTER the insertion point
// pre is the node BEFORE the insertion point
Node<T> * findInsertPoint(Node<T> * pre, const T & val) {
Node<T> * current = pre->next;
for (int i = 0; (i < getSize()) && (val > current->data); i++) {
pre = current;
current = current->next;
}
return current;
}
lastNode 只是列表中的最后一个节点。 headNode 是一个“虚拟节点”,不包含任何数据,仅用作列表的起始位置。
提前致谢。我真的很尴尬在互联网上寻求家庭作业帮助,特别是因为我确信主要问题是我对指针缺乏透彻的理解。
【问题讨论】:
标签: c++ pointers linked-list