数据结构----队列

队列 先入先出 FIFO      如果      rear 等于front      说明当前队列是空的  如果      Q->rear + 1 整除队列大小 == Q->front  代表队列是满了 没法继续插入了       #include<stdio.h> #include<stdlib.h> #include<string.h> #define MaxQsize 1000 #defi
相关文章
相关标签/搜索