随笔分类 -  数据结构和算法

摘要:#include <stdio.h> #include <malloc.h> typedef enum { false, true } bool; typedef struct Queue{ int *pBase; int front; int rear; }QUEUE; void init(QUE 阅读全文
posted @ 2020-07-06 20:32 进寸欢喜 阅读(123) 评论(0) 推荐(0)