摘要: 1 class Solution { 2 public: 3 vector > generateMatrix(int n) { 4 if (n == 0) return vector >(); 5 vector > res(n, vector(n)); 6... 阅读全文
posted @ 2014-04-16 10:51 beehard 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution { 2 public: 3 vector spiralOrder(vector > &matrix) { 4 vector res; 5 if (matrix.empty() || matrix[0].empty()) re... 阅读全文
posted @ 2014-04-16 08:07 beehard 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Given a collection of intervals, merge all overlapping intervals. For example, Given [1,3],[2,6],[8,10],[15,18], return [1,6],[8,10],[15,18]. Solution... 阅读全文
posted @ 2014-04-16 07:31 beehard 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You have ... 阅读全文
posted @ 2014-04-16 05:04 beehard 阅读(132) 评论(0) 推荐(0) 编辑