手搓单链表(无哨兵位)(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位置之后插入删除外需要先遍历链表,效率低下;不支持随机访问;缓存利用率低。

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

相关推荐
ChoSeitaku32 分钟前
链表循环及差集相关算法题|判断循环双链表是否对称|两循环单链表合并成循环链表|使双向循环链表有序|单循环链表改双向循环链表|两链表的差集(C)
c语言·算法·链表
娅娅梨34 分钟前
C++ 错题本--not found for architecture x86_64 问题
开发语言·c++
DdddJMs__13537 分钟前
C语言 | Leetcode C语言题解之第557题反转字符串中的单词III
c语言·leetcode·题解
汤米粥39 分钟前
小皮PHP连接数据库提示could not find driver
开发语言·php
Fuxiao___40 分钟前
不使用递归的决策树生成算法
算法
冰淇淋烤布蕾42 分钟前
EasyExcel使用
java·开发语言·excel
我爱工作&工作love我1 小时前
1435:【例题3】曲线 一本通 代替三分
c++·算法
拾荒的小海螺1 小时前
JAVA:探索 EasyExcel 的技术指南
java·开发语言
马剑威(威哥爱编程)1 小时前
哇喔!20种单例模式的实现与变异总结
java·开发语言·单例模式
娃娃丢没有坏心思1 小时前
C++20 概念与约束(2)—— 初识概念与约束
c语言·c++·现代c++