C++实现链表(模板)

#pragma once

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

template<class T>
//定义节点
class Node
{
public:
	T data;
	Node* next;
};

//定义链表
template<class T>
class Linklist
{
private:
	Node<T> *_head;
public:
	//构造函数
	Linklist(const T& value)  //有参
		:_head(new Node<T>)
	{
		_head->data = value;
		_head->next = nullptr;
	}
	Linklist()   //无参
		:_head(nullptr)
	{}

	//拷贝构造
	Linklist(const Linklist<T>& L)
		:_head(nullptr)
	{
     	//不为空
		if (&L != nullptr){
			if (this != &L){  //是自己就不拷贝
			//后面逻辑很简单,就是一个一个节点复制然后连起来
				Node<T>* p = L._head;
				Node<T>* temp = new Node<T>;
				temp->data = p->data;
				temp->next = nullptr;
				_head = temp;
				Node<T>* e = _head;
				while (p->next != nullptr){
					Node<T>* temp = new Node<T>;
					temp->data = p->next->data;
					temp->next = nullptr;
					e->next = temp;
					e = e->next;
					p = p->next;
				}
			}
		}
	}

	//赋值运算符重载
	Linklist<T>& operator=(const Linklist<T>& L)
	{
		if (&L != nullptr){
			if (this != &L){
				while (_head){
					Node<T>* q = _head;
					_head = _head->next;
					delete q;
				}
				Node<T>* p = L._head;
				Node<T>* temp = new Node<T>;
				temp->data = p->data;
				temp->next = nullptr;
				_head = temp;
				Node<T>* e = _head;
				while (p->next != nullptr){
					Node<T>* temp = new Node<T>;
					temp->data = p->next->data;
					temp->next = nullptr;
					e->next = temp;
					e = e->next;
					p = p->next;
				}
			}
		}
			return *this;
	}

	//头插
	void push_front(const T& value)
	{
		Node<T>* node = new Node<T>;
		node->data = value;
		node->next = _head;
		_head = node;
	}

	//头删
	void pop_front()
	{
		assert(_head != nullptr);
		Node<T>* p = _head;
		_head = _head->next;
		delete p;
		
	}

	//尾插
	void push_back(const T& value)
	{
		Node<T>* node = new Node<T>;
		node->data = value;
		node->next = nullptr;
		//链表为空的情况
		if (_head == nullptr){
			_head = node;
		}
		else{
			Node<T>* p = _head;
			while (p->next != nullptr){
				p = p->next;
			}
			p->next = node;
		}
	}

	//尾删
	void pop_back()
	{
		assert(_head != nullptr);
		//一个节点
		if (_head->next == nullptr){
			delete _head;
			_head = nullptr;
		}
		//多个节点
		else{
			Node<T>* p = _head;
			while (p->next->next != nullptr){
				p = p->next;
			}
			delete p->next;
			p->next = nullptr;
		}
	}

	//删除第n个节点
	int erase(const size_t& pos)
	{
		if (pos < 1){
			return 0;
		}
		assert(_head != nullptr);
		size_t n = 1;
		//Node<T>* p = _head;
		//第一个节点单独处理
		if (pos==1){
			pop_front();
				return 1;
		}
		Node<T>* p = _head;
		while (p->next != nullptr){
			++n;
			if (pos == n){
				Node<T>* p1 = p->next;
				p->next = p->next->next;
				delete p1;
				return 1;
			}
			p = p->next;
		}
		return 0;
	}

	//返回节点个数
	size_t Node_num()const
	{
		size_t num = 0;
		Node<T>* p = _head;
		while (p != nullptr){
			num++;
			p = p->next;
		}
		return num;
	}

	//返回第一个节点的值
	T& first_node()const
	{
		assert(_head != nullptr);
		return _head->data;
	}

	//返回最后一个节点的值
	T& last_node()const
	{
		assert(_head != nullptr);
		//一个节点
		if (_head->next == nullptr){
			return _head->data;
		}
		//多个节点
		else{
			Node<T>* p = _head;
			while (p->next->next != nullptr){
				p = p->next;
			}
			return p->next->data;
		}
	}

	//遍历链表
	void print()
	{
		assert(_head != nullptr);
		Node<T>* p = _head;
		while (p != nullptr){
			cout << p->data << " ";
			p = p->next;
		}
		cout << endl;
	}

	//链表逆置
	void reverse()
	{
		assert(_head != nullptr);
		if (_head->next == nullptr){
			return;
		}
		Node<T>* p1 = _head;
		Node<T>* p2 = nullptr;
		while (p1 != nullptr){
			Node<T>* p3 = p1->next;
			p1->next = p2;
			p2 = p1;
			p1 = p3;
		}
		_head = p2;
	}

	//析构函数
	~Linklist()
	{
		if (_head){
			while (_head){
				Node<T>* q = _head;
				_head = _head->next;
				delete q;
			}
		}
	}
};
面向对象程序设计课程作业 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、付费专栏及课程。

余额充值