摘要: class Solution {public: ListNode *insertionSortList(ListNode *head) { if (head == NULL) return NULL; ListNode* sorted_head = head; ... 阅读全文
posted @ 2014-05-10 17:26 卖程序的小歪 阅读(178) 评论(0) 推荐(0) 编辑
摘要: >Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.class Solution {public: int m... 阅读全文
posted @ 2014-05-10 15:20 卖程序的小歪 阅读(208) 评论(0) 推荐(0) 编辑