单链表基本操作

带头结点的单链表,代码如下:

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

struct node
{
	int val;
	node* next;
	node(){
		next=NULL;
	}
};

node* head;

// 在位置i插入值节点x
void insert(int i,int x)
{
	node* p = head;   // 头节点对应编号为0,不存放数据
	int j=0;
	while(p && j<i-1){ // 找出i-1位置的节点
		p = p->next;
		++j;
	}
	if(!p || j>i-1){
		cout<<"error"<<endl;
		return;
	}
	node* q=new node();
	q->val=x;
	q->next=p->next;
	p->next=q;
}

// 在位置i删除节点
void delet(int i)
{
	node* p = head;
	int j=0;
	while(p->next && j<i-1){
		p=p->next;
		++j;
	}
	if(!(p->next) || j>i-1)
	{
		cout<<"error"<<endl;
		return;
	}
	node* q=p->next;
	p->next=q->next;
	delete q;
}

void print()
{
	node* p=head->next;
	while(p){
		cout<<p->val<<" ";
		p=p->next;
	}
	cout<<endl;
}

// 链表反转
void reverse()
{
	if(head->next==NULL)
		return;
	node *p1,*p2,*p3;
	p1=head->next;
	p2=p1->next;

	while(p2){
		p3=p2->next;
		p2->next=p1;
		p1=p2;
		p2=p3;
	}

	head->next->next=NULL;
	head->next=p1;
}

void main()
{
	// 带头节点的链表
	head = new node();
	int n,x;

	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>x;
		insert(i,x);
	}

	print();

	reverse();
	print();
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值