用C++封装双向循环链表(class)

#include<iostream>
using namespace std;

typedef int DataType;

struct Node  //结点
{
Node* _pNext;
Node* _pPre;
DataType _data;

Node(const DataType& data = DataType())  //创造新结点
: _pNext(NULL)
, _pPre(NULL)
, _data(data)
{}
};

class List
{
public:
List()   //构造
: _pHead(new Node)
{
_pHead->_pNext = _pHead;
_pHead->_pPre = _pHead;
}

List(const List& l) //拷贝
:_pHead(new Node)
{
_pHead->_pNext = _pHead;
_pHead->_pPre = _pHead;
Node *pcur = l._pHead->_pNext;
while (pcur != l._pHead)
{
PushBack(pcur->_data);
pcur = pcur->_pNext;
}
}
List& operator=(List& l)//赋值运算符重载   
{
swap(_pHead, l._pHead);
return *this;
}
~List() //析构
{
Node *pcur = _pHead->_pNext;
Node *pre = NULL;
while (pcur != _pHead)
{
pre = pcur;
pcur = pcur->_pNext;
delete[]pre;
}
delete[]pcur;
_pHead = NULL;
}

void PushBack(DataType data) //尾插
{
Node *newnode = new Node(data);//*********必须把空间创造出来,不能直接调用Node中的Node
Node *ptail = NULL;
ptail = _pHead->_pPre;
ptail->_pNext = newnode;
newnode->_pPre = ptail;
_pHead->_pPre = newnode;
newnode->_pNext = _pHead;
}
void PopBack()  //尾删
{
if (Empty())
{
Node *pretail = _pHead->_pPre->_pPre;
free(_pHead->_pPre);
_pHead->_pPre = pretail;
pretail->_pNext = _pHead;
}
return;
}
void PushFront(DataType data)  //头插
{
Node *newnode = new Node(data);
Node *ptail = NULL;
ptail = _pHead->_pNext;
ptail->_pPre = newnode;
_pHead->_pNext = newnode;
newnode->_pPre = _pHead;
newnode->_pNext = ptail;
}
void PopFront() //头删
{
if (Empty())
{
Node *pdel = _pHead->_pNext;
_pHead->_pNext = pdel->_pNext;
pdel->_pNext->_pPre = _pHead;
free(pdel);
}
return;
}
void Insert(Node* pos, DataType data) //任意位置插入
{
Node *newnode = new Node(data);
pos->_pPre->_pNext = newnode;
newnode->_pPre = pos->_pPre;
pos->_pPre = newnode;
newnode->_pNext = pos;
}
void Erase(Node* pos)  //任意位置删除
{
pos->_pPre->_pNext = pos->_pNext;
pos->_pNext->_pPre = pos->_pPre;
free(pos);
}
size_t Size()   //链表大小
{
size_t count = 0;
if (Empty())
{
Node *pcur = _pHead->_pNext;
while (pcur != _pHead)
{
count++;
pcur = pcur->_pNext;
}
return count;
}
return 0;
}
int Empty()const  //链表是否为空
{
if (_pHead->_pNext == _pHead)
{
return 0;
}
return 1;
}

Node *Find(DataType data)
{
Node *pcur = NULL;
pcur = _pHead->_pNext;
while (pcur != _pHead)
{
if (pcur->_data == data)
{
return pcur;
}
pcur = pcur->_pNext;
}
return NULL;
}

void PrintList()
{
Node *pcur = NULL;
pcur = _pHead->_pNext;
while (pcur != _pHead)
{
cout << pcur->_data << "--->";
pcur = pcur->_pNext;
}
cout << "NULL" << endl;
}

private:
Node* _pHead;  
};

int main()
{
List l1;
Node *pos;
size_t size;
l1.PushBack(3);
l1.PushBack(4);
l1.PushBack(5);
l1.PushBack(6);
l1.PushBack(7);

l1.PrintList();

l1.PopBack();
l1.PopBack();
l1.PrintList();

l1.PushFront(2);
l1.PushFront(1);
l1.PrintList();

l1.PopFront();
l1.PopFront();
l1.PrintList();

pos = l1.Find(4);
l1.Insert(pos, 8);
l1.PrintList();

l1.Erase(pos);
l1.PrintList();

size=l1.Size();

List l2(l1);
l2.PrintList();

List l3;
l3 = l1;
l3.PrintList();
return 0;

}

    若是对于双向链表的尾插、尾删等上述操作不明白,可以参照我以前写的博客https://mp.csdn.net/postedit/80098311

若是对深拷贝不理解的,可以参照我以前写的博客https://mp.csdn.net/postedit/80075175

希望对大家有所帮助!!!!!!

面向对象程序设计课程作业 1. 请创建一个数据类型为T的链表类模板List,实现以下成员函数: 1) 默认构造函数List(),将该链表初始化为一个空链表(10分) 2) 拷贝构造函数List(const List& list),根据一个给定的链表构造当前链表(10分) 3) 析构函数~List(),释放链表中的所有节点(10分) 4) Push_back(T e)函数,往链表最末尾插入一个元素为e的节点(10分) 5) operator<<()友元函数,将链表的所有元素按顺序输出(10分) 6) operator=()函数,实现两个链表的赋值操作(10分) 7) operator+()函数,实现两个链表的连接,A=B+C(10分) 2. 请编写main函数,测试该类模板的正确性: 1) 用List模板定义一个List类型的模板类对象int_listB,从键盘读入m个整数,调用Push_back函数将这m个整数依次插入到该链表中;(4分) 2) 用List模板定义一个List类型的模板类对象int_listC,从键盘读入n个整数,调用Push_back函数将这n个整数依次插入到该链表中;(4分) 3) 用List模板定义一个List类型的模板类对象int_listA,调用List的成员函数实现A = B + C;(4分) 4) 用cout直接输出int_listA的所有元素(3分) 5) 用List模板定义List类型的模板类对象double_listA, double_listB, double_listC,重复上述操作。(15分) 3. 输入输出样例: 1) 输入样例 4 12 23 34 45 3 56 67 78 3 1.2 2.3 3.4 4 4.5 5.6 6.7 7.8 2) 输出样例 12 23 34 45 56 67 78 1.2 2.3 3.4 4.5 5.6 6.7 7.8
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值