上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: // language C with STL(C++) // 剑指62 // https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof/ class Solution { public: int 阅读全文
posted @ 2021-02-02 13:58 RougeBW 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指43 // https://leetcode-cn.com/problems/1nzheng-shu-zhong-1chu-xian-de-ci-shu-lcof/ int countDigitOne(int n){ if(n==0) return 0; if( 阅读全文
posted @ 2021-02-01 12:38 RougeBW 阅读(33) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指33 // https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-hou-xu-bian-li-xu-lie-lcof/ bool verifyPostorder(int* postorder, int p 阅读全文
posted @ 2021-01-31 19:06 RougeBW 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 学东西,总结下flag都做了哪些,维护一个想做的事的清单,然后设置下个月的flag 备份一下此微博,然后发到邮件和q群里备份一下 阅读全文
posted @ 2021-01-31 14:16 RougeBW 阅读(27) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指32-I // https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-lcof/ /** * Definition for a binary tree node. * stru 阅读全文
posted @ 2021-01-31 11:21 RougeBW 阅读(41) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指64 // https://leetcode-cn.com/problems/qiu-12n-lcof/ int sumNums(int n){ int ans = n; (n) &&(ans +=sumNums(n-1)); return ans; } 阅读全文
posted @ 2021-01-31 10:11 RougeBW 阅读(40) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指60 // https://leetcode-cn.com/problems/nge-tou-zi-de-dian-shu-lcof/ /** * Note: The returned array must be malloced, assume caller 阅读全文
posted @ 2021-01-30 14:49 RougeBW 阅读(51) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指04 // https://leetcode-cn.com/problems/er-wei-shu-zu-zhong-de-cha-zhao-lcof/ bool findNumberIn2DArray(int** matrix, int matrixSize, 阅读全文
posted @ 2021-01-30 09:00 RougeBW 阅读(38) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指14-II // https://leetcode-cn.com/problems/jian-sheng-zi-ii-lcof/ // 操蛋的一题,妈的 int cuttingRope(int n){ if(n<=3) return n-1; if(n==4) 阅读全文
posted @ 2021-01-28 11:33 RougeBW 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指46 // https://leetcode-cn.com/problems/ba-shu-zi-fan-yi-cheng-zi-fu-chuan-lcof/ int translateNum(int num){ // 递归 if(num<10) return 阅读全文
posted @ 2021-01-28 10:38 RougeBW 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页