单链表的实现

单链表

cpp 复制代码
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

typedef struct lianbiao
{
	int num;
	struct lianbiao* next;
}LB;
//头插 
void toucha(LB** pc, int x)
{
	LB* newnode = (LB*)malloc(sizeof(LB));
	newnode->num = x;
	newnode->next = NULL;
	if (*pc == NULL)
	{
		*pc = newnode;
	}
	else
	{
		newnode->next = *pc;
		*pc = newnode;
	}
}

//打印 
void Print(LB* pc)
{
	LB* cur = pc;
	while (cur)
	{
		printf("%d ", cur->num);
		cur = cur->next;
	}
	printf("null\n");
}

//尾插 
void weicha(LB** pc, int x)//尾插
{
	LB* newnode = (LB*)malloc(sizeof(LB));
	newnode->num = x;
	newnode->next = NULL;
	if (*pc == NULL)
	{
		*pc = newnode;
	}
	else
	{
		//法1 
//		//找尾	
//		LB*cur=*pc;
//		while(cur->next!=NULL)
//		{
//			cur=cur->next;			
//		}
//		cur->next=newnode;	

		//法二 
		LB* cur = *pc;//因为改变的是地址,所以打印时首元素地址也变了,
		//所以要存一下,开头地址 
		while ((*pc)->next != NULL)
		{
			(*pc) = (*pc)->next;
		}

		(*pc)->next = newnode;
		*pc = cur;
	}
}
//头删
void toushan(LB** pc)
{
	if (*pc == NULL)
	{
		return;
	}
	else
	{
		LB* cur = *pc;
		*pc = cur->next;
		free(cur);
		cur = NULL;
	}

}
//尾 删 ,3种情况 
void weishan(LB** pc)
{
	if (*pc == NULL)//为空 
	{
		return;
	}


	if ((*pc)->next == NULL)//只有一个节点 
	{
		free(*pc);
		*pc = NULL;
	}

	else//多个节点 
	{
		LB* cur = *pc;

		LB* tail = NULL;
		while (cur->next != NULL)
		{
			tail = cur;
			cur = cur->next;
		}

		free(cur);
		cur = NULL;

		tail->next = NULL;//最重要一步,尾删后,要把删的前一个赋成NULL 
	}

}

//查找和修改 
LB* chazhao(LB* pc, int x)
{
	LB* cur = pc;
	while (cur)
	{
		if (cur->num == x)
		{
			return cur;
		}
		cur = cur->next;
	}
	return NULL;
}

//在pos之前插入
void posqiancha(LB**pc,LB*pos,int x)
{
	if (pos==*pc)//当需要插入的位置在开头,直接头插
	{
		toucha(pc, x);//pc本来传过来的时候就是&tou,所以直接传pc
	}
	else
	{
		LB* newnode = (LB*)malloc(sizeof(LB));
		newnode->num = x;
		newnode->next = NULL;

		LB* cur = *pc;
		while (cur->next != pos)
		{
			cur = cur->next;
		}
		cur->next = newnode;
		newnode->next = pos;
	}
}
//pos位置删除
void posshan(LB** pc, LB* pos)
{
	if (*pc == pos)
	{
		LB* cur = *pc;
		*pc = cur->next;
		free(cur);
		cur = NULL;

		//头删toushan(pc,pos);
	}

	else
	{
		LB* cur = *pc;
		while (cur->next != pos)
		{
			cur = cur->next;
		}
		cur->next = pos->next;
		free(pos);
		cur = cur->next;
	}
	
}

//pos后面插入
void poshoucha(LB**pc,LB*pos,int x)
{
	LB* newnode = (LB*)malloc(sizeof(LB));
	newnode->num = x;
	newnode->next;

	if (*pc == NULL)
	{
		toucha(pc, x);
	}

	else 
	{
		LB* cur = *pc;
		while (cur != pos)
		{
			cur = cur->next;
		}
		newnode->next = pos->next;
		pos->next = newnode;
	}
}

//pos位置后面删除
void poshoushan(LB**pc,LB*pos )
{
	//cur->next = pos->next->next;直接这样写,中间节点会消失
	//存一下要删除的节点
	LB* del = pos->next;
	pos->next = del->next;
	free(del);
	del = NULL;
}

	int main()
	{
		LB* tou = NULL;
	 //   toucha(&tou,1);//头插 
	//	Print(tou);//打印 

	//weicha(&tou, 2);//尾插 
	//weicha(&tou, 2);
	//weicha(&tou, 2);
	weicha(&tou, 2);
	weicha(&tou, 7);
	weicha(&tou, 9);
	weicha(&tou, 9);
	weicha(&tou, 9);

	/*Print(tou);*/

	//头删
	//toushan(&tou);
	//toushan(&tou);
	//	Print(tou);	

		//尾删 
	/*weishan(&tou);
	weishan(&tou);*/
	//	Print(tou);

		//查找和修改 
	LB* ret = chazhao(tou, 2);
	//ret->num *= 2;
	//Print(tou);

	//在pos之前插入
	//posqiancha(&tou,ret,3);
	//Print(tou);


	//pos位置删除
	//posshan(&tou,ret);
	//Print(tou);

	//pos后面插入
	/*poshoucha(&tou,ret,9);
	Print(tou);*/

	//pos位置后面删除
	poshoushan(&tou,ret);
	Print(tou);
	return 0;
}
相关推荐
用户0099383143017 分钟前
代码随想录算法训练营第十三天 | 二叉树part01
数据结构·算法
shinelord明11 分钟前
【再谈设计模式】享元模式~对象共享的优化妙手
开发语言·数据结构·算法·设计模式·软件工程
薄荷故人_36 分钟前
从零开始的C++之旅——红黑树及其实现
数据结构·c++
努力学习编程的伍大侠1 小时前
基础排序算法
数据结构·c++·算法
XiaoLeisj1 小时前
【递归,搜索与回溯算法 & 综合练习】深入理解暴搜决策树:递归,搜索与回溯算法综合小专题(二)
数据结构·算法·leetcode·决策树·深度优先·剪枝
Jackey_Song_Odd2 小时前
C语言 单向链表反转问题
c语言·数据结构·算法·链表
乐之者v2 小时前
leetCode43.字符串相乘
java·数据结构·算法
A懿轩A3 小时前
C/C++ 数据结构与算法【数组】 数组详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·数组
️南城丶北离5 小时前
[数据结构]图——C++描述
数据结构··最小生成树·最短路径·aov网络·aoe网络
✿ ༺ ོIT技术༻5 小时前
C++11:新特性&右值引用&移动语义
linux·数据结构·c++