摘要: #include <iostream> #include <stdlib.h> #include <stdbool.h> using namespace std; //结点 class Node { public: int data; Node* next; Node(int d) { data = 阅读全文
posted @ 2018-08-09 16:46 gaozhengkai 阅读(195) 评论(0) 推荐(0) 编辑