在下面的链接列表中,我正在尝试实现打印功能。该函数是模板化的,并且不是 Node 类的一部分。
基本上我希望这个打印功能是动态的,这样我就不必Node->data
手动打印出所有的东西。我有点按照这个例子的思路工作:http ://www.cstutoringcenter.com/tutorials/cpp/cpp17.php
但是,当我尝试实现打印功能时,会出现编译器错误,例如:
node was not declared in this scope
、p' was not declared in this scope
和variable or field 'print' declared void
.
这是我的程序:
#include<iostream>
using namespace std;
template<typename T>
class Node
{
public:
Node(T = 0);
~Node() { delete [] nextPtr; };
T getData() const;
Node<T>*& getNextPtr() { return nextPtr; };
private:
T data;
Node<T> *nextPtr;
};
//CONSTRUCTOR
template<typename T>
Node<T>::Node(T newVal)
: data(newVal), nextPtr(NULL)
{
//EMPTY
};
//GETDATA() -- RETURN DATA VALUE
template<typename T>
T Node<T>::getData() const
{
return data;
};
//PRINT FUNCTION
template<typename T>
void print(node<T>* p)
{
while(p)
{
cout << p->data();
p = p->link();
}
};
int main()
{
Node<int> intNode1(5), intNode2(6), intNode3(7);
intNode1.getNextPtr() = &intNode2;
intNode2.getNextPtr() = &intNode3;
print(&intNode1);
system("pause");
}
我究竟做错了什么?