順序隊列的入隊出隊運算

#include<stdio.h> #include<stdlib.h> #define MAXSIZE 100 typedef int datatype; typedef struct node//順序隊列 定義  {     datatype data[MAXSIZE+1];     datatype head,rear; }sequeue; sequeue *sq,SQ; datatype
相關文章
相關標籤/搜索