栈(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)
posted @ 2020-07-30 20:16 哈哈哈天蝎 阅读(454) 评论(0) 推荐(0)