摘要: #include using namespace std; struct Node{ int data; Node *next; Node(const int& Newdata, Node* nextnode=NULL):data(Newdata), next(nextnode){ } }; class Queue{ private: No... 阅读全文
posted @ 2017-09-26 11:21 白丁一枚 阅读(128) 评论(0) 推荐(0)