2022年双向链表实现数据添加删除分享 .pdf
《2022年双向链表实现数据添加删除分享 .pdf》由会员分享,可在线阅读,更多相关《2022年双向链表实现数据添加删除分享 .pdf(3页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、福州大学至诚学院ACM 队利用双向链表实现头添加,头删除,尾添加,尾删除,以及输出功能。#include stdio.h #include stdlib.h typedef struct nod struct nod *prior; int data; struct nod *next; node; node *head=new node; void addfirst(int s) / 头添加函数 node* currnode=new node; currnode-data=s; currnode-next=0; if(head-next=0) head-next=currnode; curr
2、node-prior=head; else currnode-next=head-next; currnode-prior=head; head-next-prior=currnode; head-next=currnode; node *move() / 将指针指向链表末尾 node * temp=head; while(temp-next) temp=temp-next; return temp; int addlast(int s) / 尾添加 node *temp,*currnode=new node; temp=move(); currnode-data=s; temp-next=c
3、urrnode; currnode-next=0; currnode-prior=temp; return 0; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 3 页 - - - - - - - - - 福州大学至诚学院ACM 队 void delfirst() / 头删除 if(head-next-next=0) head-next-prior=0; head-next=0; else head-next=head-next-next; head-next-prior
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年双向链表实现数据添加删除分享 2022 双向 实现 数据 添加 删除 分享
限制150内