08 2025 档案

摘要:定义链栈,并实现基本操作(要求双链表实现,栈顶在链尾) #include <stdio.h> #include <stdlib.h> #include <stdbool.h> // 双向链表节点定义 typedef struct DNode { int data; // 数据域 struct DNo 阅读全文
posted @ 2025-08-21 16:53 清初 阅读(49) 评论(0) 推荐(0)