摘要:
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElemType; /*栈的链式存储类型*/ typedef struct StackNode{ /*数据域*/ ElemType data; /*指针域* 阅读全文
posted @ 2024-07-10 17:24
成强
阅读(17)
评论(0)
推荐(0)
摘要:
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElemType; /**/ #define MaxSize 50 /**/ typedef struct { ElemType data[MaxSize] 阅读全文
posted @ 2024-07-10 17:23
成强
阅读(20)
评论(0)
推荐(0)

浙公网安备 33010602011771号