摘要: // language c // 剑指56-I // https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof/ // 通过了,但是肯定能优化,需要用到亦或,不太懂 /** * Note: The ret 阅读全文
posted @ 2021-01-28 08:28 RougeBW 阅读(32) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指13 // https://leetcode-cn.com/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof/comments/ int movingCount(int m, int n, int k){ // 先整一个算数 阅读全文
posted @ 2021-01-28 06:06 RougeBW 阅读(37) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指66 // https://leetcode-cn.com/problems/gou-jian-cheng-ji-shu-zu-lcof/ /** * Note: The returned array must be malloced, assume calle 阅读全文
posted @ 2021-01-28 05:42 RougeBW 阅读(40) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指31 // https://leetcode-cn.com/problems/zhan-de-ya-ru-dan-chu-xu-lie-lcof/ bool validateStackSequences(int* pushed, int pushedSize, 阅读全文
posted @ 2021-01-28 05:31 RougeBW 阅读(34) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指26 // https://leetcode-cn.com/problems/shu-de-zi-jie-gou-lcof/ // 绕了半天才搞出来,由于本人c基础薄弱,只能想出用链表来动态存储地址的低效存储方案,以后没事干可优化 /** * Definitio 阅读全文
posted @ 2021-01-28 04:39 RougeBW 阅读(43) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指47 // https://leetcode-cn.com/problems/li-wu-de-zui-da-jie-zhi-lcof/ // 用递归的方法做 int maxValue(int** grid, int gridSize, int* gridCol 阅读全文
posted @ 2021-01-28 02:58 RougeBW 阅读(40) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指63 // https://leetcode-cn.com/problems/gu-piao-de-zui-da-li-run-lcof/ // 同主站121 // https://leetcode-cn.com/problems/best-time-to-bu 阅读全文
posted @ 2021-01-27 14:41 RougeBW 阅读(34) 评论(0) 推荐(0) 编辑
摘要: // language c // 剑指07 // https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof/ /** * Definition for a binary tree node. * struct TreeNode { * i 阅读全文
posted @ 2021-01-27 13:22 RougeBW 阅读(21) 评论(0) 推荐(0) 编辑
摘要: // 剑指59-II // language c // https://leetcode-cn.com/problems/dui-lie-de-zui-da-zhi-lcof/ typedef struct Node{ int val; struct Node* next; } Node; // 维 阅读全文
posted @ 2021-01-27 12:49 RougeBW 阅读(36) 评论(0) 推荐(0) 编辑
摘要: //language c // 剑指09 // https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof/ // 方法一,用链表栈 // 先实现栈 typedef struct Node{ int val; s 阅读全文
posted @ 2021-01-27 09:49 RougeBW 阅读(47) 评论(0) 推荐(0) 编辑