隊列 講義實現

順序隊列 基本操作和順序鏈表和順序棧差不多,注意其有兩個指針,頭尾指針 頭出(刪除元素)尾進(添加元素) 實現 #include <iostream> using namespace std; const int QUEUE_INIT_SIZE = 20; const int OVERFLOW = 0; const int ERROR = 0; const int OK = 1; const in
相關文章
相關標籤/搜索