【数据结构】循环链表

(近期我在学习数据结构,于是我自己整理了单链表、循环单链表、双向链表、双向循环链表的相关代码,以巩固这段时间的学习,也希望能够帮助初学者,希望大家在阅读以下代码时发现问题纠正于我,一起探讨)

CycLinkList.h

#ifndef __CYCLINKLIST_H
#define __CYCLINKLIST_H

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

typedef  int ElemType;

//定义结点
typedef struct Node
{
	ElemType data;
	struct Node *next;
}Node;

/*
//定义带头结点的链表
typedef struct Linklist
{
	struct Node head; //头结点
	int count;
}Linklist, *pList;
*/

//定义不带头结点的链表
typedef struct Linklist
{
	struct Node *head; //头指针
	int count;
}Linklist, *pList;

//初始化链表
void InitLinkList(pList list);

//插入函数
void InsertLinkList(pList list, ElemType val, int pos);

//头插函数
void InsertHeadLinkList(pList list, ElemType val);

//尾插函数
void InsertTailLinkList(pList list, ElemType val);

//删除结点函数
void DeleteLinkList(pList list, int pos);

//删头函数
void DeleteHeadLinkList(pList list);

//删尾函数
void DeleteTailLinkList(pList list);

//顺序输出函数
void ShowLinkLIst1(pList list);
void ShowLinkLIst2(pList list);


#endif

CycLinkList.c

#include"CycLinkList.h"


//不带头结点的循环链表
//初始化链表
void  InitLinkList(pList list)
{
	list->count = 0;
	list->head = NULL;
}

static Node *BuyNode(ElemType val, Node *next)
{
	Node *p = ( Node *)malloc(sizeof(Node));
	assert( p != NULL);

	p->data = val;
	if( next == NULL)//考虑链表中没有结点时的情况
	{
		p->next = p;
		return p;
	}
	p->next = next;
	return p;
}
//插入函数
void InsertLinkList(pList list, ElemType val, int pos)
{
	if( pos < 0 || pos > list->count)
	{
		printf("pos is error\n");
		return ;
	}

	if(list->head == NULL)//考虑链表中没有结点时的插入
	{
		list->head = BuyNode(val, NULL); //给头结点赋值
		list->count++;
		return;
	}
	Node *p = list->head;
	int tmpos = pos == 0 ? list->count : pos;//如果时头插就相当于尾插后前移头指针
	while( tmpos > 1)//将指针移到pos(tmpos)结点的位置
	{
		p =p->next;
		tmpos --;
	}
	Node *s = BuyNode(val, p->next); //给新结点申请新空间
	p->next = s;
	if(pos == 0) //如果pos为0就代表是头插,所以要改变头指针的位置
	{
		list->head = s;
	}
	list->count++; //增加结点个数
}

//头插函数
void InsertHeadLinkList(pList list, ElemType val)
{
	InsertLinkList(list, val, 0);
}

//尾插函数
void InsertTailLinkList(pList list, ElemType val)
{
	InsertLinkList(list, val, list->count);
}

//删除结点函数
void DeleteLinkList(pList list, int pos)
{
	assert(list != NULL);
	if(pos < 1 || pos > list->count)
	{
		printf("pos is error\n");
		return ;
	}
	if(list->count == 1) //只有一个结点时的删除
	{
		free(list->head); //直接释放空间
		list->head = NULL;
		list->count--; //结点数减一
	}
	Node *p = list->head;
	if( pos == 1)
	{
		while( p->next != list->head)
		{
			p = p->next;
		}
		list->head = list->head->next;
	}
	else
	{
		while( pos > 2)
		{
			p = p->next;
			pos --;
		}
	}	
		Node *q = p->next;
		p->next = q->next;
		free(q);
		list->count--;
	
}

//删头函数
void DeleteHeadLinkList(pList list)
{
	DeleteLinkList(list, 1);
}

//删尾函数
void DeleteTailLinkList(pList list)
{
	DeleteLinkList(list, list->count);
}

//顺序输出函数
void ShowLinkLIst1(pList list)
{
	assert(list != NULL);
	Node *p = list->head;
	while( p->next != list->head)
	{
		printf("%3d",p->data);
		p = p->next;
	}
	printf("%3d\n",p->data);
}

void ShowLinkLIst2(pList list)
{
	assert(list != NULL);
	Node *p = list->head;
	int tmp = list->count;
	while(tmp > 0)
	{
		printf("%3d",p->data);
		p =p->next;
		tmp --;
	}
	printf("\n");
}

测试代码(main.c):

#include "CycLinkLIst.h"

int main()
{
	Linklist list;
	InitLinkList(&list);
	for( int i = 0; i < 5; i++)
	{
		InsertLinkList(&list, i * 10, i); //相当于5次尾插结点
	}
	ShowLinkLIst1(&list);
	
	for( int j = 3; j > 0; j--)
	{
		DeleteLinkList(&list, j);
		ShowLinkLIst1(&list);
	}
	ShowLinkLIst2(&list);

	return 0;
}

输出结果:

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值