数据结构双向循环链表

主程序

#include "fun.h"

int main(int argc, const char *argv[])

{

double_p H=create_head();

insert_head(H,10);

insert_head(H,20);

insert_head(H,30);

insert_head(H,40);

insert_tail(H,50);

show_link(H);

del_tail(H);

show_link(H);

free_link(H);

H=NULL;

show_link(H);

return 0;

}

源程序

#include "fun.h"

//创建头节点

double_p create_head()

{

double_p H=(double_p)malloc(sizeof(node));

if(H==NULL)

{

printf("节点申请失败\n");

return NULL;

}

H->prior=H;

H->next=H;

H->len=0;

return H;

}

//创建新节点

double_p create_new(typdata data)

{

double_p new=(double_p)malloc(sizeof(node));

if(new==NULL)

{

printf("节点申请失败\n");

return NULL;

}

new->prior=NULL;

new->next=NULL;

new->data=data;

return new;

}

//判空

int empty_link(double_p H)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

return -1;

}

return H->len==0;

}

//头插

void insert_head(double_p H,typdata data)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

return;

}

double_p new=create_new(data);

new->next=H->next;

H->next=new;

new->next->prior=new;

new->prior=H;

H->len++;

}

//遍历

void show_link(double_p H)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

return;

}

if(empty_link(H))

{

printf("链表已空,无需遍历\n");

return;

}

double_p p=H;

while(p->next!=H)

{

p=p->next;

printf("<-%d->",p->data);

}

putchar(10);

}

//尾插

void insert_tail(double_p H,typdata data)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

return;

}

double_p p=H;

while(p->next!=H)

{

p=p->next;

}

double_p new=create_new(data);

new->next=p->next;

p->next=new;

new->prior=p;

H->prior=new;

H->len++;

}

//尾删

void del_tail(double_p H)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

return;

}

if(empty_link(H))

{

printf("链表已空,无需删除\n");

return;

}

double_p p=H;

while(p->next->next!=H)

{

p=p->next;

}

free(p->next);

p->next=NULL;

p->next=H;

H->prior=p;

H->len--;

}

//释放链表

void free_link(double_p H)

{

if(H==NULL)

{

printf("入参为空,请检查\n");

}

while(H->next != H)

{

del_tail(H);

}

free(H);

H=NULL;

}

头文件

#ifndef _FUN_H

#define _FUN_H

#include <myhead.h>

typedef int typdata;

typedef struct node

{

union

{

typdata data;

int len;

};

struct node * prior;

struct node *next;

}node,*double_p;

double_p create_head();//创建头节点

double_p create_new(typdata data);//创建新节点

int empty_link(double_p H);//判空

void insert_head(double_p H,typdata data);//头插

void show_link(double_p);//遍历

void insert_tail(double_p H,typdata data);//尾插

void del_tail(double_p H);//尾删

void free_link(double_p H);//释放链表

#endif

相关推荐
故事和你911 天前
洛谷-数据结构1-4-图的基本应用1
开发语言·数据结构·算法·深度优先·动态规划·图论
破浪前行·吴1 天前
数据结构概述
数据结构·学习
_日拱一卒1 天前
LeetCode:25K个一组翻转链表
算法·leetcode·链表
小欣加油1 天前
leetcode2078 两栋颜色不同且距离最远的房子
数据结构·c++·算法·leetcode·职场和发展
我真不是小鱼1 天前
cpp刷题打卡记录30——轮转数组 & 螺旋矩阵 & 搜索二维矩阵II
数据结构·c++·算法·leetcode
码完就睡2 天前
数据结构——栈和队列的相互模拟
数据结构
iiiiyu2 天前
常用API(SimpleDateFormat类 & Calendar类 & JDK8日期 时间 日期时间 & JDK8日期(时区) )
java·大数据·开发语言·数据结构·编程语言
故事和你912 天前
洛谷-数据结构1-4-图的基本应用2
开发语言·数据结构·算法·深度优先·动态规划·图论
꧁细听勿语情꧂2 天前
数据结构概念和算法、时间复杂度、空间复杂度引入
c语言·开发语言·数据结构·算法
Felven2 天前
B. The 67th 6-7 Integer Problem
数据结构·算法