實現隊列的入隊和出隊操做

1)順序隊 #include <iostream>  using namespace std; const int MAX=10;  class Queue{  private:     int front;     int rear;     int data[MAX];  public:     Queue(){front=rear=MAX-1;}      ~Queue(){} ;
相關文章
相關標籤/搜索