摘要: #include using namespace std; struct Node{ int data; Node* prev; Node* next; }; class List{ private: Node* head; public: List(); ~List(); int Length(); bool Empty(); ... 阅读全文
posted @ 2017-09-19 21:05 白丁一枚 阅读(109) 评论(0) 推荐(0)
摘要: #include #include #include using namespace std; struct Node{ int date; Node* next; }; class List{ private: Node *head; public: List() { head = new Node; head->date = 0; ... 阅读全文
posted @ 2017-09-19 19:54 白丁一枚 阅读(128) 评论(0) 推荐(0)