摘要:
class Solution { public: vector > permuteUnique(vector &num) { vector > result; if (num.size() path; dfs(n... 阅读全文
posted @ 2014-05-27 19:00
卖程序的小歪
阅读(169)
评论(0)
推荐(0)
摘要:
class Solution { public: vector > generateMatrix(int n) { vector > matrix; if (n (n, 0)); }... 阅读全文
posted @ 2014-05-27 15:47
卖程序的小歪
阅读(172)
评论(0)
推荐(0)
摘要:
class Solution { public: vector spiralOrder(vector > &matrix) { vector ret; int cols = 0; ... 阅读全文
posted @ 2014-05-27 14:42
卖程序的小歪
阅读(210)
评论(0)
推荐(0)