双向链表的简单实现

代码实现

#include<iostream>
#include<cassert>
using namespace std;

typedef int DataType;

struct ListNode
{
	ListNode* _next;
	ListNode* _prev;
	DataType _data;

	ListNode(DataType x)
		:_data(x)
		, _next(NULL)
		, _prev(NULL)
	{}
};

class List
{
	typedef ListNode Node;
private:
	Node* _head;
	Node* _tail;
public:
	List()
		:_head(NULL)
		, _tail(NULL)
	{}
	List(const List& l)
		:_head(NULL)
		, _tail(NULL)
	{
		Node* cur = l._head;
		while (cur)
		{
			PushBack(cur->_data);
			cur = cur->_next;
		}
	}
	List& operator=(const List& l)
	{
		if (this != &l)
		{
			List tmp(l);
			Swap(tmp);
		}
		return *this;
	}
	void Swap(List& l)
	{
		swap(_head, l._head);
		swap(_tail, l._tail);
	}
	~List()
	{
		if (_head != NULL)
		{
			Node* del = _head;
			_head = _head->_next;
			delete del;
		}
	}

	void PushBack(DataType x)
	{
		if (_head == NULL)
		{
			_head = _tail = new Node(x);
		}
		else
		{
			Node* tmp = new Node(x);
			_tail->_next = tmp;
			tmp->_prev = _tail;
			_tail = tmp;
		}
	}
	void PopBack()
	{
		if (_head == NULL)
		{
			cout << NULL << endl;
		}
		else if (_head->_next == NULL)
		{
			delete _tail;
			_tail = NULL;
			_head = NULL;
			cout << NULL << endl;
		}
		else
		{
			Node* cur = _tail;
			cur->_prev->_next = NULL;
			_tail = cur->_prev;
			delete cur;
		}
	}
	void PushFront(DataType x)
	{
		if (_head == NULL)
		{
			_head = _tail = new Node(x);
		}
		else
		{
			Node* tmp = new Node(x);
			tmp->_next = _head;
			_head->_prev = tmp;
			_head = tmp;
		}
	}
	void PopFront()
	{
		if (_head == NULL)
		{
			cout << NULL << endl;
		}
		else if (_head->_next == NULL)
		{
			delete _tail;
			_tail = NULL;
			_head = NULL;
			cout << NULL << endl;
		}
		else
		{
			Node* cur = _head;
			_head = _head->_next;
			delete cur;
			_head->_prev = NULL;
		}
	}
	// 在pos的前面插入一个 
	void Insert(Node* pos, DataType x)
	{
		assert(pos);
		if (pos == _head)
		{
			PushFront(x);
		}
		else if (pos == _tail)
		{
			PushBack(x);
		}
		else
		{
			Node* tmp = new Node(x);
			Node* prev = pos->_prev;
			Node* next = pos->_prev->_next;
			prev->_next = tmp;
			tmp->_next = next;
			next->_prev = tmp;
			tmp->_prev = prev;
		}
	}
	void Erase(Node* pos)
	{
		if (pos==_head)
		{
			PopFront();
		}
		else if (pos==_tail)
		{
			PopBack();
		}
		else
		{
			Node* prev = pos->_prev;
			Node* next = pos->_next;
			delete pos;
			prev->_next = next;
			next->_prev = prev;
		}
	}
	Node* Find(DataType x)
	{
		Node* cur = _head;
		while (cur)
		{
			if (cur->_data == x)
				return cur;
			cur = cur->_next;
		}
		return NULL;
	}
	void Reverse()
	{
		Node* begin = _head;
		Node* end = _tail;
		while ((begin != end)&&(begin->_prev != end))
		{
			swap(begin->_data, end->_data);
			begin = begin->_next;
			end = end->_prev;
		}
	}
	void Print()
	{
		if (_head != NULL)
		{
			Node* cur = _head;
			while (cur)
			{
				cout << cur->_data << " ";
				cur = cur->_next;
			}
			cout << endl;
		}
		else
		{
			cout << NULL << endl;
		}
	}

};
测试代码

#define _CRT_SECURE_NO_WARNINGS 
#include"List.h"

void Test()
{
	List l1;
	l1.PushBack(1);
	l1.PushBack(2);
	l1.PushBack(3);
	l1.PushBack(4);
	l1.Print();

    l1.Reverse();
	l1.Print();

	//l1.Insert(l1.Find(4), 8);
	//l1.Print();

	/*l1.PushFront(6);
	l1.Print();

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

	l1.Print();
*/
	/*List l2;
	l2 = l1;
	l2.Print();

	List l3(l1);
	l3.Print();
*/
	//l1.PopBack();
	//l1.Print();

}

int main()
{
	Test();
	system("pause");
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值