2015年5月25日
摘要: Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 -> Z ... 阅读全文
posted @ 2015-05-25 11:25 黄瓜小肥皂 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Sort a linked list in O(n log n) time using constant space complexity. 1 class Solution { 2 public: 3 ListNode *sortList(ListNode *head) 4 { 5... 阅读全文
posted @ 2015-05-25 11:08 黄瓜小肥皂 阅读(125) 评论(0) 推荐(0) 编辑