单向链表基本操作

#define  _CRT_SECURE_NO_WARNINGS 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct Node
{
	int id;		//数据域
	struct Node *next;	//指针域
}SLIST;

//创建头节点
SLIST *SListCreat() 
{
	SLIST *pCur = NULL;		//当前节点
	SLIST *pHead = NULL;	//头结点
	SLIST *pNew = NULL;		//新节点

	//头结点,只是作为标志使用,不保存有效数据
	pHead = (SLIST *)malloc(sizeof(SLIST));
	if (pHead == NULL)
	{
		return NULL;
	}

	//pHead成员变量赋值,数据域任意即可,后面用不上
	pHead->id = -1;
	pHead->next = NULL;

	//保存当前节点
	//指针指向谁,就把谁的地址赋值给指针
	pCur = pHead;

	int data;

	//循环创建结点,结点数据域中的数值从键盘输入,以-1作为输入结束标志
	while (1)
	{
		printf("请输入数据:");
		scanf("%d", &data); 

		if (data == -1)
		{//输入-1,退出循环
			break;
		}

		//新节点分配空间
		pNew = (SLIST *)malloc(sizeof(SLIST));
		if (pNew == NULL)
		{//如果没有分配成功,跳出本次循环
			continue;
		}

		//pNew成员变量赋值
		pNew->id = data;
		pNew->next = NULL;

		//当前节点next指向新节点
		pCur->next = pNew;

		//新节点的next指向NULL
		pNew->next = NULL;

		//当前节点的位置移动到新节点的位置(pCur指向pNew)
		pCur = pNew;
	}

	
	//链表的头结点地址由函数值返回。
	return pHead;
}

//遍历节点
//顺序输出单向链表各项结点数据域中的内容
int SListPrint(SLIST *pHead)
{
	if (pHead == NULL)
	{
		return -1;
	}

	//保存头结点的下一个节点
	//因为头结点不是有效数据节点,下一个节点才是有效数据的结点
	SLIST *pCur = pHead->next;

	printf("head -> ");
	while (pCur != NULL)
	{
		printf("%d -> ", pCur->id);

		//节点往后移动,当前节点指向下一个节点
		pCur = pCur->next;
	}
	printf("NULL\n");

	return 0;
}

//在值为x的结点前,插入值为y的结点;
//若值为x的结点不存在,则插在表尾
int SListNodeInsert(SLIST *pHead, int x, int y)
{
	if (pHead == NULL)
	{
		return -1;
	}

	SLIST *pPre = pHead;		//上一个节点
	SLIST *pCur = pHead->next;	//当前节点
	SLIST *pNew = NULL;         //新节点

	while (pCur != NULL)
	{
		//如果当前节点数据域等于x,跳出循环
		if (pCur->id == x)
		{
			break;
		}

		//保存当前节点
		pPre = pCur;

		//当前节点往后移动,当前节点指向下一个节点
		//pPre和pCur相差一个节点,pPre为上一个节点,pCur为当前节点
		pCur = pCur->next;
	}

	//程序执行到这,有两种情况
	//1. 找到值为x的结点,pCur为当前匹配节点,pPre为上一个节点
	//2. 没有找到x的结点,节点移动到结尾,pPre为最后一个节点,pCur为NULL

	//在值为x的结点前,插入值为y的结点;
	//若值为x的结点不存在,则插在表尾
	
	//新节点分配空间
	pNew = (SLIST *)malloc(sizeof(SLIST));
	if (pNew == NULL)
	{
		return -2;
	}

	//pNew成员变量赋值
	pNew->id = y;
	pNew->next = NULL;

	//pPre的next指向pNew
	pPre->next = pNew;

	//pNew的next指向pCur
	pNew->next = pCur;

	return 0;
}

//删除第一个值为x的结点
int SListNodeDel(SLIST *pHead, int x)
{
	if (pHead == NULL)
	{
		return -1;
	}

	SLIST *pPre = pHead;		//上一个节点
	SLIST *pCur = pHead->next;	//当前节点
	int flag = 0; //标志位,0代表没有值为x的结点,1代表有

	while (pCur != NULL)
	{
		if (pCur->id == x)
		{
			//上一个节点指向当前节点的下一个节点
			pPre->next = pCur->next;

			//临时释放节点
			free(pCur);
			pCur = NULL;

			//标志位,0代表没有值为x的结点,1代表有
			flag = 1;

			//跳出循环
			break;
		}

		//保存当前节点
		pPre = pCur;

		//当前节点往后移动,当前节点指向下一个节点
		//pPre和pCur相差一个节点,pPre为上一个节点,pCur为当前节点
		pCur = pCur->next;
	}

	if (flag == 0)
	{ //标志位,0代表没有值为x的结点,1代表有
		printf("没有值为%d的结点\n", x);
		return -2;
	}

	return 0;
}

//删除值为x的所有结点
int SListNodeDelPro(SLIST *pHead, int x)
{
	if (pHead == NULL)
	{
		return -1;
	}

	SLIST *pPre = pHead;		//上一个节点
	SLIST *pCur = pHead->next;	//当前节点
	SLIST *pTmp = NULL;			//临时释放节点
	int flag = 0; //标志位,0代表没有值为x的结点,1代表有


	while (pCur != NULL)
	{
		if (pCur->id == x)
		{
			//上一个节点指向当前节点的下一个节点
			pPre->next = pCur->next;
			pTmp = pCur;		//临时释放节点


			//当前节点往后移动,当前节点指向下一个节点
			//pPre和pCur相差一个节点,pPre为上一个节点,pCur为当前节点
			pCur = pCur->next;

			//临时释放节点
			free(pTmp);
			pTmp = NULL;

			//标志位,0代表没有值为x的结点,1代表有
			flag = 1;

			//结束本次循环,没有跳出循环,看是否有重复值为x的结点
			continue;
		}

		//保存当前节点
		pPre = pCur;

		//当前节点往后移动,当前节点指向下一个节点
		//pPre和pCur相差一个节点,pPre为上一个节点,pCur为当前节点
		pCur = pCur->next;
	}

	
	if (flag == 0)
	{ //标志位,0代表没有值为x的结点,1代表有
		printf("没有值为%d的结点\n", x);
		return -2;
	}

	return 0;
}

//链表节点排序
int SListNodeSort(SLIST *pHead)
{
	if (pHead == NULL)
	{
		return -1;
	}

	SLIST *pPre = NULL;
	SLIST *pCur = NULL; 
	SLIST tmp; //临时交换变量
	
	//选择法排序
	for (pPre = pHead->next; pPre != NULL; pPre = pPre->next)
	{
		for (pCur = pPre->next; pCur != NULL; pCur = pCur->next)
		{
			if (pPre->id > pCur->id) //升序
			{
				//交换数据域
				tmp = *pCur;
				*pCur = *pPre;
				*pPre = tmp;

				//交换指针域(重要)
				tmp.next = pCur->next;
				pCur->next = pPre->next;
				pPre->next = tmp.next;

			}
		}
	}

	return 0;
}

//假如原来链表是升序的,升序插入新节点
//不能插入节点后再排序,是升序插入新节点x
int SListNodeInsertPro(SLIST *pHead, int x)
{
	//先排序,保证原来链表是升序的
	int ret = SListNodeSort(pHead);
	if (ret != 0)
	{
		return ret;
	}

	SLIST *pPre = pHead;		//上一个节点
	SLIST *pCur = pHead->next;	//当前节点

	while (pCur != NULL)
	{
		//找到合适节点,假如x = 3
		//链表为:1 2 4 5
		//那么 4 节点为合适节点
		if (pCur->id >= x)
		{
			break;
		}

		//保存当前节点
		pPre = pCur;

		//当前节点往后移动,当前节点指向下一个节点
		//pPre和pCur相差一个节点,pPre为上一个节点,pCur为当前节点
		pCur = pCur->next;
	}

	//程序执行到这,有2种情况
	//1. 找到匹配节点,pCur为当前匹配节点,pPre为上一个节点
	//2. 没有找到匹配节点,节点移动到结尾,pPre为最后一个节点,pCur为NULL
	

	//新节点分配空间
	SLIST *pNew = (SLIST *)malloc(sizeof(SLIST));
	if (pNew == NULL)
	{
		return -2;
	}

	//pNew成员变量赋值
	pNew->id = x;
	pNew->next = NULL;

	//pPre的next指向pNew
	pPre->next = pNew;

	//pNew的next指向pCur
	pNew->next = pCur;

	return 0;
}

//翻转链表的节点(不是排序,是翻转)
int SListNodeReverse(SLIST *pHead)
{
	if (pHead == NULL || pHead->next == NULL || pHead->next->next == NULL)
	{
		return -1;
	}

	//上一个节点
	SLIST *pPre = pHead->next;

	//当前节点,pCur和pPre相差一个节点
	SLIST *pCur = pPre->next; //pHead->next->next

	SLIST *pTmp = NULL; //临时节点

	while (pCur != NULL)
	{
		//先保存pCur的下一个节点
		pTmp = pCur->next;

		//原来: pPre->next = pCur
		//翻转: pCur->next = pPre
		//pCur的next指向pPre
		pCur->next = pPre;

		//pPre往后移动一个节点,pPre指向pCur
		pPre = pCur;

		//pCur往后移动一个节点,pCur指向pTmp
		pCur = pTmp;
	}

	//确定头结点和尾结点
	//程序执行到这,说明pCur为NULL,pPre为最后一个有效节点
	//而翻转后,pPre为头结点指向的第一个有效节点

	//先确定翻转后的尾结点
	pHead->next->next = NULL;

	//在确定头结点
	pHead->next = pPre;

	return 0;
}

//释放所有节点
int SListDestroy(SLIST *pHead)
{
	if (pHead == NULL)
	{
		return -1;
	}

	SLIST *pTmp = NULL;	//临时释放节点

	while (pHead != NULL)
	{
		//临时释放节点
		pTmp = pHead;

		//头结点指向头结点next节点
		pHead = pHead->next;
		
		free(pTmp);
		pTmp = NULL;

	}

	return 0;
}

int main(int argc, const char * argv[])
{
	SLIST *pHead = NULL;

	pHead = SListCreat(); //创建头结点
	printf("\n创建头结点后\n");
	SListPrint(pHead); //遍历所有节点

	
	SListNodeInsert(pHead, 4, 3);//在4前面插入3
	printf("\n在4前面插入3\n");
	SListPrint(pHead); //遍历所有节点

	
	SListNodeDel(pHead,  4);//删除第一个值为4的结点
	printf("\n删除第一个值为4的结点\n");
	SListPrint(pHead); //遍历所有节点

	SListNodeSort(pHead);//链表节点排序
	printf("\n链表节点排序\n");
	SListPrint(pHead); //遍历所有节点

	SListNodeInsertPro(pHead, 5);//升序插入5
	printf("\n升序插入5后\n");
	SListPrint(pHead); //遍历所有节点

	//翻转链表的节点(不是排序,是翻转)
	SListNodeReverse(pHead);
	printf("\n翻转链表的节点\n");
	SListPrint(pHead); //遍历所有节点

	SListDestroy(pHead);//释放所有节点
	pHead = NULL;
	SListPrint(pHead); //遍历所有节点

	return 0;
}

测试结果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值