摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> #include<stdbool.h> typedef struct Node{ int data; struct Node* next; }Node; typedef struct Stack{ Node* top; Node* bottom; }Stack; void InitSta 阅读全文
posted @ 2019-09-17 09:55 顾wenfan 阅读(486) 评论(0) 推荐(0) 编辑