2020年7月30日

栈(c语言)链表实现

摘要: 节点的结构 struct Node { int value; struct Node* next; }; typedef struct Node Node; 基本功能和操作演示 #include <stdio.h> #include <stdlib.h> struct Stack { Node *n 阅读全文

posted @ 2020-07-30 20:16 哈哈哈天蝎 阅读(454) 评论(0) 推荐(0)

链表(c语言实现)

摘要: 节点的数据结构 struct Node { int value; struct Node* next; }; typedef struct Node Node; 操作和演示 #include <stdlib.h> #include <stdio.h> // 建立一个节点 Node *createNo 阅读全文

posted @ 2020-07-30 00:09 哈哈哈天蝎 阅读(233) 评论(0) 推荐(0)

导航