數據結構(十) 鏈隊列的基本操做 ----入隊列,出隊列,判斷隊列是否爲空

//鏈隊列的基本操做 #include <iostream> using namespace std; //節點的結構體 struct Node { int data; struct Node *next; }; //隊列的結構體 struct queue { struct Node * front; struct Node *rear; }; //隊列的初始化操做 void
相關文章
相關標籤/搜索