C++ 模版类的单向循环链式线性表

基于之前做的单向链式线性表http://blog.csdn.net/shiwazone/article/details/47000191,改进下,实现了循环链表,相对应单向链表,循环链表将尾节点的指针域指向头节点,加入循环,可以让我们在查找某一个index的节点时,可以先判断一下位置和链表长度的关系,如果index处于链表的前半部分,我们可以从头节点遍历查找,如果处于后半部分,我们可以从尾节点往前查找,当然此时我们需要使用双向链表。双向链表的操作,下次给出吧!循环链表给了我们一种思路,如果我们在一个数据块中,加入一个或一些标志节点,我们可以判断我们需要的操作是在哪个区间,可以实现提高工作效率!

代码中重载了加号运算符,实现两个链表的相加。其实我们还可以有更多的操作,但是很多操作都是基于我们的插入删除操作的!所以我们在做数据结构分析的时候,我们要注意到插入和删除的通用性!

#pragma once
#include <iostream>
using namespace std;
template<typename EleType>
class CircleList
{
public:
	struct Node
	{
		EleType _data;
		Node* _next;
		Node(){ _next = nullptr; }
		Node(EleType data){ _data = data; _next = nullptr; }
	};
	CircleList();
	~CircleList();
	bool GetElem(EleType& e, int index = 1)const;//得到List中第index个元素,把元素的_data赋给e;
	bool InsertElem(const EleType e, int index = 1);//在List的第index个位置插入一个节点,节点的数据为e
	bool DeleteElem(EleType& e, int index = 1);//在List的第index个位置删除一个节点,删除节点的数据赋给e
	bool InsertHead(const EleType& e);//在头部插入数据
	bool InsertTail(const EleType& e);//在尾部插入数据
	bool Clear();//清空List
	void ShowList()const;//显示List的所有元素的数据
	CircleList<EleType>* operator+(CircleList<EleType>& addList);//重载运算符

private:
	bool Empty()const;//判断List是否为空
	CircleList<EleType>* AddList(CircleList<EleType>& addList);//加上addList的数据,相当于把addList的数据从尾部插入到原List中
	//在List中查找第index个位置的节点,把该节点的地址赋给n,此处需传入指针的引用,才能保证n可以被修改,不然只能保证*n可以被修改,也就是n指向的节点可以被修改
	bool Find(int index, Node*& n)const;
	bool CheckIndex(int index)const;//检查List是否为空,index是否合法
	Node* Head;//头指针
	Node* Tail;//尾指针
	int Length;
};
#include "CircleList.h"
#include <iostream>
using namespace std;

template<typename EleType>
bool CircleList<EleType>::CheckIndex(int index) const
{
	if (Empty())
	{
		cout << "Find: the List is Empty!\n";
		return false;
	}
	if (index<1 || index>Length)
	{
		cout << "the index is invalid!\n";
		return false;
	}

	return true;
}

template<typename EleType>
bool CircleList<EleType>::Find(int index, Node*& n)const//index [1,Length];
{

	if (CheckIndex(index))
	{
		int i = 1;
		Node * temp = Head;
		while (i < index)
		{
			temp = temp->_next;
			++i;
		}
		n = temp;
		return true;
	}
	return false;
}

template<typename EleType>
void CircleList<EleType>::ShowList() const
{
	Node * temp = nullptr;

	if (Empty())
	{
		cout << "The list is empty!\n";

	}
	else
	{
		for (int i = 1; i <= Length ; ++i)
		{
			Find(i, temp);
			cout << temp->_data << " ";
		}
		cout << endl;
	}
}

template<typename EleType>
bool CircleList<EleType>::Clear()
{
	if (Empty())
	{
		return true;
	}
	else
	{
		while (Length)
		{
			EleType m;
			DeleteElem(m);
		}
		return true;
	}

}

template<typename EleType>
bool CircleList<EleType>::DeleteElem(EleType& e, int index = 1)
{
	if (CheckIndex(index))
	{
		Node* temp = nullptr;
		Node* pre_temp = nullptr;
		if (Find(index, temp))
		{
			if (index == 1)
			{
				Find(index + 1, Head);
			}
			else
			{
				if (index == Length)
				{
					Find(index - 1, Tail);

				}
				else
				{
					Find(index - 1, pre_temp);
					pre_temp->_next = temp->_next;
				}
			}
			e = temp->_data;
			delete temp;
			--Length;
			return true;
		}
		return false;
	}
	return false;
}

template<typename EleType>
bool CircleList<EleType>::InsertElem(const EleType e, int index)
{
	Node *insertNode = new Node(e);

	if (Empty())
	{
		if (index < 1) return false;
		Head = Tail = insertNode;
		insertNode->_next = insertNode;
		++Length;
		return true;
	}

	if (index == 1)
	{
		insertNode->_next = Head;
		Head = insertNode;
		Tail->_next = Head;
		++Length;
		return true;
	}
	if (index == Length + 1)
	{
		Tail->_next = insertNode;
		insertNode->_next = Head;
		Tail = insertNode;
		++Length;
		return true;
	}
	Node  *temp = nullptr;

	if (Find(index - 1, temp))
	{
		insertNode->_next = temp->_next;
		temp->_next = insertNode;
		++Length;
		return true;
	}

	return false;
}

template<typename EleType>
bool CircleList<EleType>::GetElem(EleType& e, int index) const
{
	if (CheckIndex(index))
	{
		Node* temp = nullptr;
		if (Find(index, temp))
			e = temp->_data;
		return true;
	}
	return false;
}

template<typename EleType>
CircleList<EleType>::~CircleList()
{
	Clear();
}

template<typename EleType>
CircleList<EleType>::CircleList() :Length(0), Head(nullptr), Tail(nullptr)
{

}

template<typename EleType>
bool CircleList<EleType>::Empty() const
{
	return(Length == 0);
}

template<typename EleType>
bool CircleList<EleType>::InsertTail(const EleType& e)
{
	return InsertElem(e, Length + 1);
}

template<typename EleType>
bool CircleList<EleType>::InsertHead(const EleType& e)
{
	return InsertElem(e);
}

template<typename EleType>
CircleList<EleType>* CircleList<EleType>::AddList(CircleList<EleType>& addList)
{

	if (Empty())
	{
		if (addList.Empty())
		{
			return this;
		}
		Node* temp = addList.Head;
		for (int i = 1; i <= addList.Length;++i)
		{
			InsertTail(temp->_data);
			temp = temp->_next;
		}

		return this;
	}
	else
	{
		if (addList.Empty())
		{
			return this;
		}
		else
		{
			Node* temp = addList.Head;
			for (int i = 1; i <= addList.Length; ++i)
			{
				InsertTail(temp->_data);
				temp = temp->_next;
			}
			return this;
		}
	}
}

template<typename EleType>
CircleList<EleType>* CircleList<EleType>::operator+(CircleList<EleType>& addList)
{
	return AddList(addList);
}
#include "CircleList.cpp"

int main()
{
	CircleList<int> IntList1;
	IntList1.ShowList();

	IntList1.InsertElem(155);
	IntList1.InsertElem(5);
	IntList1.InsertElem(55);
	IntList1.InsertElem(15);
	IntList1.InsertElem(99);

	IntList1.ShowList();
	CircleList<int> IntList2;
	IntList2.InsertElem(11);
	IntList2.InsertElem(11);
	IntList2.InsertElem(11);
	IntList2.InsertElem(11);
	IntList2.InsertElem(11);
	IntList2.ShowList();

	CircleList<int> *IntList3;

	IntList3 = IntList2 + IntList1;

	IntList3->ShowList();

	return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-09-28 02:50:11

C++ 模版类的单向循环链式线性表的相关文章

C++ 模版类的单向链式线性表

先上代码!以后再仔细编辑! 头文件 <span style="font-size:18px;">#pragma once template<typename EleType> class ChainList { public: struct Node { EleType _data; Node* _next; Node(){ _next = nullptr; } Node(EleType data){ _data = data; _next = nullptr;

双向链式线性表(模板实现)

线性表(List):零个或者多个数据元素的有限序列. 线性表的存储结构大约分为三种:1,顺序存储结构 2,链式存储结构 3,静态链表. 顺序存储结构的线性表是由数组实现的,由于C++不支持变长数组,所以顺序存储结构的线性表在定义时就指定了长度,这是一个很大的问题.譬如说,一个顺序存储结构的线性表的长度为10000,我们写程序用到了这个线性表,但是只往表里添加了十几个数据,这显然对空间造成了极大的浪费.所以说,这种结构的线性表并适用于实际的应用. 链式存储结构的线性表实现了空间的动态分配,这一概念

链式线性表实现

1.链式线性表头文件 #ifndef _LINK_LIST_H #define _LINK_LIST_H //定义一个节点 typedef struct _tag_LinkListNode { _tag_LinkListNode *next; }LinkListNode; //定义一个链表@1链表包含一个头部节点@ 包含链表的长度 typedef struct _LinkList { LinkListNode Head; int nLen;//长度 }LinkList; LinkList *li

java实现的链式线性表结构

package com.hephec.ds; public class LinkedList<T> { //定义一个内部类节点Node Node实例代表链表的节点 class Node{ //保存节点的数据 private T data; //保存下一个节点的引用 private Node next; //无参的构造方法 public Node(){ } //有参的构造方法 public Node(T data,Node next){ this.data=data; this.next=nex

7-19 求链式线性表的倒数第K项

7-19 求链式线性表的倒数第K项(20 分) 给定一系列正整数,请设计一个尽可能高效的算法,查找倒数第K个位置上的数字. 输入格式: 输入首先给出一个正整数K,随后是若干正整数,最后以一个负整数表示结尾(该负数不算在序列内,不要处理). 输出格式: 输出倒数第K个位置上的数据.如果这个位置不存在,输出错误信息NULL. 输入样例: 4 1 2 3 4 5 6 7 8 9 0 -1 输出样例: 7思路:待定 原文地址:https://www.cnblogs.com/zengguoqiang/p/

链式线性表

学习了顺序线性表后,我开始有一个疑问,每一次的插入和删除都需要大量的移动数据吗,有没有一种方法可以不移动数据呢?这就是本章要学习的新的数据结构,线性表的链式存储方式,记不记得第一章就说过的,对于一种数据结构,其逻辑结构是唯一的,但是它可能对应着多种存储结构.链式结构就是线性表的另外一种存储结构 链式结构是什么样子呢 见过火车吧?火车就是一个车厢扣着一个车厢的,简单的说火车的车厢就相当于单链表的一个节点,这个车厢有什么特点呢, 1.当前车厢的乘客 2.勾着下个车厢的钩子 用数据结构怎么描述火车车厢

3-05. 求链式线性表的倒数第K项(15)(STL list运用)

题目链接:http://pat.zju.edu.cn/contests/ds/3-05 给定一系列正整数,请设计一个尽可能高效的算法,查找倒数第K个位置上的数字. 输入格式说明: 输入首先给出一个正整数K,随后是若干正整数,最后以一个负整数表示结尾(该负数不算在序列内,不要处理). 输出格式说明: 输出倒数第K个位置上的数据.如果这个位置不存在,输出错误信息"NULL". 样例输入与输出: 序号 输入 输出 1 4 1 2 3 4 5 6 7 8 9 0 -1 7 2 6 3 6 7

7-19 求链式线性表的倒数第K项(20 分)(单链表定义与尾插法)

给定一系列正整数,请设计一个尽可能高效的算法,查找倒数第K个位置上的数字. 输入格式: 输入首先给出一个正整数K,随后是若干正整数,最后以一个负整数表示结尾(该负数不算在序列内,不要处理). 输出格式: 输出倒数第K个位置上的数据.如果这个位置不存在,输出错误信息NULL. 输入样例: 4 1 2 3 4 5 6 7 8 9 0 -1 输出样例: 7 解题思路:寻找倒数第K项,这里所用的方法是定义两个指针,让第一个指针先走k步,然后两个指针一起移动,第一个指针移到末尾的时候,第二个指针就到了倒数

7-1 求链式线性表的倒数第K项 (20 分)

给定一系列正整数,请设计一个尽可能高效的算法,查找倒数第K个位置上的数字. 输入格式: 输入首先给出一个正整数K,随后是若干正整数,最后以一个负整数表示结尾(该负数不算在序列内,不要处理). 输出格式: 输出倒数第K个位置上的数据.如果这个位置不存在,输出错误信息NULL. 输入样例: 4 1 2 3 4 5 6 7 8 9 0 -1 输出样例: 7 #include <stdio.h> #include <malloc.h> int main() { int K, temp, l