摘要: //循环队列#include<iostream>using namespace std;typedef struct Qq{ int *base; int front; int rear;}Qq;void chushihua(Qq &q) { q.base = new int[15]; if (!q 阅读全文
posted @ 2020-11-09 18:28 柠檬tea的味道 阅读(53) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std; // 连队列 typedef struct Q { int date; struct Q *next;}Q, *Qq;typedef struct { Qq front; Qq rear;}Link;void gouzao 阅读全文
posted @ 2020-11-09 09:09 柠檬tea的味道 阅读(71) 评论(0) 推荐(0)