c++ 链表类的设计 程序

/*
链表类的一些功能:
(1)向链表中插入元素,主要包括向链表头插入元素和向链表尾插入元素
(2)从链表中删去元素,主要包括删去链表头元素和删去链表尾元素
(3)所有结点的删除
为了实现上述功能,同时为了满足面向对象程序设计的要求,一般需要两个类来对链表进行管理:
一个类是link,它主要用来管理链表中每个结点中的数据以及指向下一个结点的指针;
另一个类是list,它主要用来对链表进行管理并提供对链表的操作。
下面将给出满足上述要求的链表设计程序。
*/
#include<iostream>
using namespace std;
#include<string.h>
class link
{
	friend class list;
	link *next;
	char str[20];
public:
	link(){
		strcpy(str,"\0");
	}
	link(const char *s){
		strcpy(str,s);
	}
	link *get(){
		return(next);
	}
	void disp(){
		cout<<str<<endl;
	}
};
class list
{
	link *first;
	link *last;
public:
	list(){
		first=last=new link;
	}
	~list(){
		quanshan();
		delete first;
	}
	list &toucha(const link &x);
	list &weicha(const link &x);
	list &toushan();
	list &weishan();
	list &quanshan();
	void disp();
};
list &list::toucha(const link &x)
{
	link *p=first;
	first=new link;
	*first=x;
	first->next=p;
	return(*this);
}
list &list::weicha(const link &x)
{
	link *p=last;
	*p=x;
	last=new link;
	p->next=last;
	return(*this);
}
list &list::toushan()
{
	if(first==last);
	else
	{
		link *p=first->next;
		delete first;
		first=p;
	}
	return(*this);
}
list &list::weishan()
{
	if(first==last);
	else if(first->next==last)
	{
		toushan();
	}
	else
	{
		link *p=first;
		link *s;
		while(p->next!=last)
		{
			s=p;
			p=p->next;
		}
		s->next=last;
		delete p;
	}
	return(*this);
}
list &list::quanshan()
{
	link *p=first;
	while(p!=last)
	{
		link *s;
		s=p->next;
		delete p;
		p=s;
	}
	first=last;
	return(*this);
}
void list::disp()
{
	link *p=first;
	int n=1;
	while(p!=last)
	{
		cout<<n<<":";
		p->disp();
		n++;
		p=p->next;
	}
}
int main()
{
	list dt;
	dt.weicha(link("wang"));
	dt.weicha(link("zhang"));
	dt.toucha(link("zao"));
	dt.weicha(link("meng"));
	dt.disp();
	return 0;
}

在这里插入图片描述
设计中碰到的问题:
1、最开始给link初始化的时候,代码如下:

class link
{
	friend class list;
	char str[20];
	link *next;
public:
	link(){
		strcpy(str,"\0");
	}
	link(char *s){
		strcpy(str,s);
	}
	……
};

这时候编译器会出现warning
在这里插入图片描述
原因是

char * 背后的意思是给我个字符串,我要修改它
而理论上我们传给函数的字面常量是无法被修改的
const char * 背后的意思是给我个字符串,我要读取它
这样写更加合理

具体参考如下连接,非常详细:
warning:deprecated conversion from string constant to 'char *'解决方案

面向对象程序设计课程作业 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、付费专栏及课程。

余额充值