摘要: struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; void createList(ListNode* &pHead){ pHead = ... 阅读全文
posted @ 2016-07-13 10:39 牧羊少年10号 阅读(430) 评论(0) 推荐(0) 编辑