摘要: #includeusing namespace std;class Node{public: Node(int value) : value(value), next(NULL) {}public: int value; Node* next;};Node* reverseList... 阅读全文
posted @ 2014-06-26 10:16 Jeffrey-Jodio 阅读(250) 评论(0) 推荐(0) 编辑