鱼C论坛

 找回密码
 立即注册
分享 关于单链表的详细注释
2018-5-13 01:06
关于单链表的详细注释
#include stdio.h #include stdlib.h struct Node { int value; struct Node *next; //指向下一个结点的指针(后继) }; void insertNode(struct Node **head, int input) { struct Node *previous; //存放当前结点的前一个结点 ...
个人分类: C语言学习笔记|148 次阅读|0 个评论

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-4-28 02:10

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

返回顶部