循環隊列函數實現

#pragma once #include<iostream> #include<assert.h> using namespace std; #define MAXSIZE 20 typedef int ElemType; typedef struct Queue { ElemType *base; int front; int rear; }Queue;
相關文章
相關標籤/搜索