// 北京交通大学 2007-3-30
#include <iostream>
using namespace std;
struct LNode
{
int data;
struct LNode *next;
};
class Link
{
public:
Link():m_Len(0),m_head(0){};
Link(int Len);
Print();
Reverse();
private:
LNode *m_head;[......]
// 北京交通大学 2007-3-30
#include <iostream>
using namespace std;
struct LNode
{
int data;
struct LNode *next;
};
class Link
{
public:
Link():m_Len(0),m_head(0){};
Link(int Len);
Print();
Reverse();
private:
LNode *m_head;[......]