手搓单链表(无哨兵位)(C语言)

目录

SLT.h

SLT.c

SLTtest.c

测试示例

单链表优劣分析


SLT.h

#pragma once

#include <stdio.h>
#include <assert.h>
#include <stdlib.h>

typedef int SLTDataType;

typedef struct SListNode
{
	SLTDataType data;
	struct SListNode* next;
}SLTNode;

//打印单链表
void SLTPrint(SLTNode* phead);
//创建节点
SLTNode* BuySLTNode(SLTDataType x);
//尾插
void SLTPushBack(SLTNode** pphead, SLTDataType x);
//尾删
void SLTPopBack(SLTNode** pphead);
//头插
void SLTPushFront(SLTNode** pphead, SLTDataType x);
//头删
void SLTPopFront(SLTNode** pphead);

//单链表查找
SLTNode* SLTFind(SLTNode* phead, SLTDataType x);
//在pos之前插入
void SLTInsert(SLTNode** pphead, SLTNode* pos, SLTDataType x);
//删除pos位置
void SLTErase(SLTNode** pphead, SLTNode* pos);

//单链表在pos位置之后插入x
void SListInsertAfter(SLTNode* pos, SLTDataType x);
//单链表删除pos位置之后的值
void SListEraseAfter(SLTNode* pos);

//销毁单链表
void SLTDestroy(SLTNode** pphead);

SLT.c

#include "SLT.h"

//打印单链表
void SLTPrint(SLTNode* phead)
{
	SLTNode* cur = phead;
	while (cur)
	{
		printf("%d->", cur->data);
		cur = cur->next;
	}
	printf("NULL\n");
}

//创建节点
SLTNode* BuySLTNode(SLTDataType x)
{
	SLTNode* node = (SLTNode*)malloc(sizeof(SLTNode));
	if (node == NULL)
	{
		perror("SLTBuysNode");
		exit(-1);
	}
	node->data = x;
	node->next = NULL;
	return node;
}

//尾插
void SLTPushBack(SLTNode** pphead, SLTDataType x)
{
	assert(pphead);

	if (*pphead == NULL)
	{
		*pphead = BuySLTNode(x);
	}
	else
	{
		SLTNode* tail = *pphead;
		while (tail->next)
		{
			tail = tail->next;
		}
		tail->next = BuySLTNode(x);
	}
}

//尾删
void SLTPopBack(SLTNode** pphead)
{
	assert(pphead);
	assert(*pphead);

	if ((*pphead)->next == NULL)
	{
		free(*pphead);
		*pphead = NULL;
	}
	else
	{
		SLTNode* tail = *pphead;
		while (tail->next->next)
		{
			tail = tail->next;
		}
		free(tail->next->next);
		tail->next = NULL;
	}
}

//头插
void SLTPushFront(SLTNode** pphead, SLTDataType x)
{
	assert(pphead);
	SLTNode* newnode = BuySLTNode(x);
	newnode->next = *pphead;
	*pphead = newnode;
}

//头删
void SLTPopFront(SLTNode** pphead)
{
	assert(pphead);
	assert(*pphead);

	SLTNode* newhead = (*pphead)->next;
	free(*pphead);
	*pphead = newhead;
}

// 单链表查找
SLTNode* SLTFind(SLTNode* phead, SLTDataType x)
{
	SLTNode* cur = phead;
	while (cur)
	{
		if (cur->data == x)
		{
			//找到了
			return cur;
		}
		cur = cur->next;
	}
	//找不到
	return NULL;
}

//在pos之前插入
void SLTInsert(SLTNode** pphead, SLTNode* pos, SLTDataType x)
{
	assert(pphead);

	if (*pphead == pos)
	{
		SLTNode* newnode = BuySLTNode(x);
		newnode->next = *pphead;
		*pphead = newnode;
	}
	else
	{
		SLTNode* cur = *pphead;
		while (cur->next != pos)
		{
			cur = cur->next;
		}
		SLTNode* newnode = BuySLTNode(x);
		cur->next = newnode;
		newnode->next = pos;
	}
	
}

// 删除pos位置
void SLTErase(SLTNode** pphead, SLTNode* pos)
{
	assert(pphead);
	assert(*pphead && pos);

	if (*pphead == pos)
	{
		SLTNode* newhead = (*pphead)->next;
		free(*pphead);
		*pphead = newhead;
	}
	else
	{
		SLTNode* cur = *pphead;
		while (cur->next != pos)
		{
			cur = cur->next;
		}
		SLTNode* pos_next = pos->next;
		free(pos);
		cur->next = pos_next;
	}
	
}

// 单链表在pos位置之后插入x
void SListInsertAfter(SLTNode* pos, SLTDataType x)
{
	assert(pos);

	SLTNode* newnode = BuySLTNode(x);
	newnode->next = pos->next;
	pos->next = newnode;
}

// 单链表删除pos位置之后的值
void SListEraseAfter(SLTNode* pos)
{
	assert(pos && pos->next);

	SLTNode* pos_next_next = pos->next->next;
	free(pos->next);
	pos->next = pos_next_next;
}

//销毁单链表
void SLTDestroy(SLTNode** pphead)
{
	assert(pphead);
	assert(*pphead);

	while (*pphead)
	{
		SLTNode* newhead = (*pphead)->next;
		free(*pphead);
		*pphead = newhead;
	}
}

SLTtest.c

#include "SLT.h"

void SLTtest1()
{
	SLTNode* phead = NULL;
	SLTPrint(phead);
	SLTPushBack(&phead, 1);
	SLTPushBack(&phead, 2);
	SLTPushBack(&phead, 3);
	SLTPushBack(&phead, 4);
	SLTPushBack(&phead, 5);
	SLTPrint(phead);

	SLTPopBack(&phead);
	SLTPrint(phead);
	SLTPopBack(&phead);
	SLTPrint(phead);
	SLTPopBack(&phead);
	SLTPrint(phead);
	SLTPopBack(&phead);
	SLTPrint(phead);
	SLTPopBack(&phead);
	SLTPrint(phead);
	/*SLTPopBack(&phead);
	SLTPrint(phead);*/
}
void SLTtest2()
{
	SLTNode* phead = NULL;
	SLTPrint(phead);
	SLTPushFront(&phead, 1);
	SLTPushFront(&phead, 2);
	SLTPushFront(&phead, 3);
	SLTPushFront(&phead, 4);
	SLTPushFront(&phead, 5);
	SLTPrint(phead);

	/*SLTDestroy(&phead);
	SLTPrint(phead);*/

	/*SLTPopFront(&phead);
	SLTPrint(phead);
	SLTPopFront(&phead);
	SLTPrint(phead);
	SLTPopFront(&phead);
	SLTPrint(phead);
	SLTPopFront(&phead);
	SLTPrint(phead);
	SLTPopFront(&phead);
	SLTPrint(phead);*/
	/*SLTPopFront(&phead);
	SLTPrint(phead);*/
}
void SLTtest3()
{
	SLTNode* phead = NULL;
	SLTPrint(phead);
	SLTPushFront(&phead, 1);
	SLTPushFront(&phead, 2);
	SLTPushFront(&phead, 3);
	SLTPushFront(&phead, 4);
	SLTPushFront(&phead, 5);
	SLTPrint(phead);
	//在pos位置之前插入删除
	SLTInsert(&phead, phead, 10);
	SLTPrint(phead);

	SLTInsert(&phead, NULL, 20);
	SLTPrint(phead);

	SLTNode* pos = SLTFind(phead, 3);
	SLTInsert(&phead, pos, 30);
	SLTPrint(phead);

	//删除pos位置的值
	SLTErase(&phead, phead);
	SLTPrint(phead);

	pos = SLTFind(phead, 3);
	SLTErase(&phead, pos);
	SLTPrint(phead);

	pos = SLTFind(phead, 20);
	SLTErase(&phead, pos);
	SLTPrint(phead);
}

void SLTtest4()
{
	SLTNode* phead = NULL;
	SLTPrint(phead);
	SLTPushFront(&phead, 1);
	SLTPushFront(&phead, 2);
	SLTPushFront(&phead, 3);
	SLTPushFront(&phead, 4);
	SLTPushFront(&phead, 5);
	SLTPrint(phead);
	//在pos位置之后插入
	SListInsertAfter(phead, 10);
	SLTPrint(phead);

	SLTNode* pos = SLTFind(phead, 3);
	SListInsertAfter(pos, 30);
	SLTPrint(phead);

	pos = SLTFind(phead, 1);
	SListInsertAfter(pos, 10);
	SLTPrint(phead);

	//删除pos位置之后的值
	SListEraseAfter(phead);
	SLTPrint(phead);

	pos = SLTFind(phead, 4);
	SListEraseAfter(pos);
	SLTPrint(phead);
	
}
int main()
{
	//测试尾插尾删
	//SLTtest1();
	
	//测试头插头删
	//SLTtest2();
	
	//在pos位置之前插入删除
	//SLTtest3();

	//在pos位置之后插入删除
	//SLTtest4();
	return 0;
}

测试示例

尾插尾删:

头插头删:

在pos位置之前插入:

删除pos位置的值:

在pos位置之后插入删除:

单链表优劣分析

单链表在逻辑上连续,在物理上不一定连续,用多少申请多少空间,因此不存在空间浪费且申请空间开销小;插入删除元素时无需挪动元素,只需要改变指向即可,但除头插头删,在pos位置之后插入删除外需要先遍历链表,效率低下;不支持随机访问;缓存利用率低。

总结:单链表具有较大的缺陷,相较于顺序表而言没有明显的优势,因此在实践中几乎没有应用场景。

相关推荐
小码农<^_^>几秒前
c++继承(下)
开发语言·c++
非著名架构师4 分钟前
js混淆的方式方法
开发语言·javascript·ecmascript
Themberfue5 分钟前
基础算法之双指针--Java实现(下)--LeetCode题解:有效三角形的个数-查找总价格为目标值的两个商品-三数之和-四数之和
java·开发语言·学习·算法·leetcode·双指针
深山夕照深秋雨mo14 分钟前
在Java中操作Redis
java·开发语言·redis
陈序缘30 分钟前
LeetCode讲解篇之322. 零钱兑换
算法·leetcode·职场和发展
barbyQAQ32 分钟前
Qt源码阅读——事件循环
开发语言·数据库·qt
-$_$-33 分钟前
【LeetCode HOT 100】详细题解之二叉树篇
数据结构·算法·leetcode
记得开心一点嘛33 分钟前
在Java项目中如何使用Scala实现尾递归优化来解决爆栈问题
开发语言·后端·scala
大白飞飞34 分钟前
力扣203.移除链表元素
算法·leetcode·链表
敏编程1 小时前
网页前端开发之Javascript入门篇(5/9):函数
开发语言·javascript