摘要: class Node; using NodePtr = std::unique_ptr<Node>; class Node { public: int value; NodePtr next = nullptr; explicit Node(int value_ = 0): value(value_ 阅读全文
posted @ 2016-02-13 15:05 wu_overflow 阅读(614) 评论(0) 推荐(0) 编辑