链表

#include<iostream>
using namespace std;
typedef struct node{
	int element;
	node *next;
}list;
void Init(list *header){//初始化链表 
	int n;	cin >> n;
	for(int i=0; i<n; ++i){
		list *temp = (list*)malloc(sizeof(list));
		cin >> temp->element;
		temp->next = NULL;
		list *t = header;
		while(t->next!=NULL){
			t = t->next;
		}
		t->next = temp;
	} 
	return ;
}
void Print(list *header){
	list *t = header->next;
	while(t!=NULL){
		cout << t->element << "   ";
		t = t->next;
	}
	cout << endl;
	return ;
}
void Insert(list *header){	//下标从零开始,先前插入 
	int n;	cin >> n;
	list *t = header;
	for(int i=0; i<n; ++i){
		if(t->next==NULL){
			cout << "Out of space." << endl;
			return ;
		}
		t = t->next;
	}
	list *temp = (list*)malloc(sizeof(list));
	cin >> temp->element;
	temp->next = t->next;
	t->next = temp;
	return ;
}
void Delet(list *header){	//下标从零开始 
	int n;	cin >> n;
	list *t = header;
	for(int i=0; i<n; ++i){
		if(t->next==NULL){
			cout << "Out of space." << endl;
			return ;
		}
		t = t->next;
	}
	if(t->next!=NULL)
		t->next = t->next->next;
	else
		t->next = NULL;
	return ;
}
int main(){
	list *header = (list*)malloc(sizeof(list));
	//node *header = (node*)malloc(sizeof(node));
	//在C++中,结构体声明时可省略struct关键字
	//第一个node代表(struct node)声明结构体的类型
	//第二个代表强转malloc的返回值(malloc)的返回值为void
	//第三个为求出node结构体的大小 
	header->next = NULL;
	Init(header);
	Print(header);
	Insert(header);
	Print(header); 
	Delet(header);
	Print(header); 
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值