假設以不帶頭結點的循環鏈表表示隊列,而且只設一個指針指向隊尾結點,但不設頭指針。試設計相應的入隊和出隊的算法

#include <iostream> using namespace std; template <class DataType> struct Node{ DataType a; Node<DataType> * next; }; template <class DataType> class LinkQueue{ public: LinkQueue()
相關文章
相關標籤/搜索