当前位置: 首页 > article >正文

2024.02.05

复习单向,双向链表,并且实现两种链表的增加和删除功能。

单链表头插

Linklist insert_head(datatype element,Linklist head) {

//创建新节点

Linklist s=create_node();

if(NULL==s) return head;

s->data=element;

//1,判断链表为空

if(NULL==head)

{

head=s;

} else //链表不为空

{

s->next=head; head=s;

}

return head;

}

单链表头删

Linklist delete_head(Linklist head)

{

//1,判断链表为空

if(NULL==head)

{

return head;

} else //链表存在1个或多个节点

{

Linklist del=head;

head=head->next;

free(del);

del=NULL;

}

return head;

}

双向链表头插

Doublelink double_insert_head(datatype element,Doublelink head)

{

//创建新节点s

Doublelink s=create_node();

if(s==NULL) return head;

strcpy(s->data,element);

//1.判断链表为空

if(NULL ==head)

head=s;

//2.存在多个节点>=1

else {

s->next=head;

head->priv=s;

head=s;

}

return head;

}

双向链表尾删

Doublelink delete_rear(Doublelink head)

{

//1,判断链表为空

if(NULL ==head)

return head;

//2,只有一个节点

if(head->next==NULL)

{

free(head);

head=NULL;

} else //>=2

{

//找到最后一个节点

Doublelink p=head;

while(p->next!=NULL)

{

p=p->next;

} p->priv->next=NULL;

free(p);

p=NULL;

}

return head;

}

 


http://www.kler.cn/a/229942.html

相关文章:

  • Word 转成pdf及打印的开源方案支持xp
  • Linux:深入了解fd文件描述符
  • 基于Python实现的通用小规模搜索引擎
  • 前端用json-server来Mock后端返回的数据处理
  • oracle位运算、左移右移、标签算法等
  • vivado时序约束和优化
  • 假期2.5
  • 六轴机器人奇异点
  • C++——stack与queue与容器适配器
  • 基于Vue2用keydown、keyup事件实现长按键盘任意键(或组合键)3秒触发自定义事件(以F1键为例)
  • 小学教师职称等级顺序 申请条件有哪些要求
  • 《C程序设计》上机实验报告(八)之结构体和共用体
  • GNU C和标准C
  • 风控安全产品系统设计
  • 2024年考PMP还有什么用?
  • Leetcode 55. 跳跃游戏
  • 五大架构风格之三:独立构件风格
  • 找城市 - 华为OD统一考试
  • Python程序设计 深浅拷贝
  • 必看!嵌入式基于UART的通信协议-RS232、RS485协议解析
  • 挂耳耳机哪个牌子好?推荐几款性价比超高的挂耳耳机
  • 反射的理解
  • PyTorch 2.2 中文官方教程(二十)
  • React 实现表单组件
  • 2024/2/5总结
  • 中科大计网学习记录笔记(六):应用层概述 | 应用层原理