#include <iostream>
#include <string>
#include <iomanip>

#define MAXSIZE 11

using namespace std;



struct Node
{
	string elem;
	int next;
};


class StaticLinkList
{
private:
	Node space[MAXSIZE];
	//表头节点:1
	//备用链表表头节点:0
	//NULL :0
	int length;

public:
	StaticLinkList()//初始化链表
	{
		length = 0;
		space[1].next = 0;//带表头节点的空链表
		space[0].next = 2;//构成空闲链接表
		for (int i = 2; i < MAXSIZE - 1; i++)
		{
			space[i].next = i + 1;
		}
		space[MAXSIZE - 1].next = 0;
	}
	void Show()
	{
		for (int i = 0; i < MAXSIZE; i++)
		{
			cout << setiosflags(ios::left);
			cout << setw(8) << space[i].elem;
			cout << setiosflags(ios::right);
			cout << setw(2) << space[i].next << endl;
			cout << resetiosflags(ios::right);
		}
		cout << "********************" << endl;
	}
	int FindPrior(int a)//找到第a个节点的前一个节点
	{
		int prior = 1;
		while (--a)
		{
			prior = space[prior].next;
		}
		return prior;
	}
	int Malloc()
	{
		int i = space[0].next;
		if (i)
			space[0].next = space[space[0].next].next;//备用链表删去一个节点
		return i;//返回分配的节点下标
	}
	void Free(int a)//将下标为a的空闲节点回收到备用链表
	{
		space[a].next = space[0].next;
		space[0].next = a;
	}
	void Insert(int a, string e)
	{
		int priorNode = FindPrior(a);
		int newNode = Malloc();
		space[newNode].elem = e;

		space[newNode].next = space[priorNode].next;
		space[priorNode].next = newNode;
	}
	void Delete(int a)
	{
		int priorNode = FindPrior(a);
		int del = space[priorNode].next;

		space[priorNode].next = space[del].next;
		Free(del);
	}
	void Search(string e)
	{
		int i = space[1].next;
		while (i)
		{
			if (space[i].elem == e)
			{
				cout << setiosflags(ios::right) << setw(2) << i << endl;
				cout << "********************" << endl;
				return;
			}
			i = space[i].next;
		}
	}
};

int main()
{
	StaticLinkList sl;
	string select;
	while (cin >> select)
	{
		if (select == "show")
		{
			sl.Show();
		}
		else if (select == "insert")
		{
			int a;
			string e;
			cin >> a >> e;
			sl.Insert(a, e);
		}
		else if (select == "delete")
		{
			int a;
			cin >> a;
			sl.Delete(a);
		}
		else if (select == "search")
		{
			string e;
			cin >> e;
			sl.Search(e);
		}
	}
	return 0;
}


点赞(0)
 

0.0分

0 人评分

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论