2016年3月16日

摘要: struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode* rotateRight(ListNode* head, int k) { int level = -1;... 阅读全文
posted @ 2016-03-16 08:33 做个不善的人 阅读(199) 评论(0) 推荐(0) 编辑
 
摘要: DFS 阅读全文
posted @ 2016-03-16 01:13 做个不善的人 阅读(189) 评论(0) 推荐(0) 编辑