摘要: 数据结构 栈的链式存储结构源码 阅读全文
posted @ 2020-04-12 21:16 Yqifei 阅读(314) 评论(1) 推荐(1) 编辑
摘要: 数据结构链表源码 数据结构链表源码,仅供自己复习专用。 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> typedef struct Node{ int data; struct Node *n 阅读全文
posted @ 2020-04-12 08:56 Yqifei 阅读(202) 评论(0) 推荐(0) 编辑