摘要: // 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) 编辑
摘要: // language: c // 剑指30,已经通过,待发,目前博客园发文章的系统出问题了 // https://leetcode-cn.com/problems/bao-han-minhan-shu-de-zhan-lcof/ // 结点的结构体定义,每个节点记录值与当前最小值 typedef 阅读全文
posted @ 2021-01-27 09:47 RougeBW 阅读(48) 评论(0) 推荐(0) 编辑