今晚的月色温柔

导航

2020年11月7日 #

循环队列——数据结构

摘要: #include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;#define INIT_SIZE 10struct circleQueue{ int *base; int front; int rear; }; 阅读全文

posted @ 2020-11-07 19:37 1022 阅读(81) 评论(0) 推荐(0) 编辑

设计链式队列

摘要: #include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;struct qnode{int data;qnode *next;};struct linkqueue{qnode *front;qnode *r 阅读全文

posted @ 2020-11-07 14:45 1022 阅读(88) 评论(0) 推荐(0) 编辑