C++实现双向链表(含头结点)

该博客介绍了如何在C++中实现一个带有头结点的双向链表,包括插入、删除和搜索操作。VS2005环境下已成功运行并通过测试。
摘要由CSDN通过智能技术生成

 VS2005运行通过,如有问题,请各位大牛指正。

注意:双向链表含有头结点

#include <iostream>
using namespace std;
template<class Type>
struct Node
{
	Type data;
	Node<Type>* prior;
	Node<Type>* next;
};
template<class Type>
class DoubleList
{
protected:
	int len;//链表中结点个数
	Node<Type>* Head; //指向头结点
public:
	DoubleList();//默认构造函数
	DoubleList(const DoubleList<Type>& otherList);//拷贝构造函数
	~DoubleList();
	void createListForward();//头插法
	void createBackward();//尾插法
	void initList();//生成头结点,尾部设置为NULL
	bool isEmptyList();
	int length();
	void destoryList();
	void getFirstData(Type& firstItem);  
	void search(const Type searchItem);  
	void insertFirst(const Type newItem);  
	void insertLast(const Type newItem);  
	void insertBefore(const int pos,const Type newItem);  
	void insertAfter(const int pos,const Type newItem);  
	void deleteNode(const Type deleteItem);  
	void deleteNode(const int pos,Type& deleteItem);
	void reverse();
	const DoubleList<Type>& operator=(const DoubleList<Type>&otherList); 
	friend ostream& operator<< <>(ostream& cout,const DoubleList<Type>& list);//注意 在<< 后加上 <>表明这是个函数模板
};

template<class Type>
DoubleList<Type>::DoubleList() //初始化时,只有一个头结点,有head指向
{
	Head = new Node<Type>;
	Head->next = NULL;
	len =0;
}

template<class Type>
DoubleList<Type>::DoubleList(const DoubleList<Type>&otherList)
{
	//首先建立头结点
	Head = new Node<Type>;
	Head->next = NULL;
	Head->prior = NULL;
	len =0;
	Node<Type>* current = Head;//总是指向本链表的最后一个结点,待插入结点直接插入
	Node<Type>* otherListCurrent=otherList.Head->next;//otherListCurrent指向第一个元素
	while(otherListCurrent!=NULL)//拷贝的目标不为空
	{
		Node<Type>* newNode = new Node<Type>;
		newNode->data = otherListCurrent->data;
		newNode->next = current->next;
		current->next = newNode;
		newNode->prior = current;
		current=current->next;
		otherListCurrent = otherListCurrent->next;
		len++;
	}

}

template<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值