摘要:
queue.h-------------#includestruct location{ int x; int y;};struct Node{ location data; Node* t; };class LinkedQueue { // FIFO对象public: LinkedQueue() {front = rear = NULL;} // 构造函数 ~LinkedQueue(); // 析构函数 bool IsEmpty() const {return ((front) ? false : true);} //locatio... 阅读全文
posted @ 2013-11-06 22:30
xds1224
阅读(345)
评论(0)
推荐(0)

浙公网安备 33010602011771号