LeetCode 94 二叉树的中序遍历 2023年2月27日 feelshu Leave a comment 算法 给定一个二叉树的根节点 root ,返回 它的 中序 遍历 。 示例 1: 示例 2: 示例 3: 提示: 进 […] Continue reading
LeetCode 93 复原 IP 地址 2023年2月27日2023年2月27日 feelshu Leave a comment 算法 有效 IP 地址 正好由四个整数(每个整数位于 0 到 255 之间组成,且不能含有前导 0),整数之间用 & […] Continue reading
LeetCode 92 反转链表 II 2023年2月25日 feelshu Leave a comment 算法 给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right […] Continue reading
LeetCode 91 解码方法 2023年2月25日 feelshu Leave a comment 算法 一条包含字母 A-Z 的消息通过以下映射进行了 编码 : 要 解码 已编码的消息,所有数字必须基于上述映射的方 […] Continue reading
LeetCode 90 子集 II 2023年2月23日 feelshu Leave a comment 算法 给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。 解集 不能 包含重 […] Continue reading
LeetCode 89 格雷编码 2023年2月23日 feelshu Leave a comment 算法 n 位格雷码序列 是一个由 2^n 个整数组成的序列,其中: 给你一个整数 n ,返回任一有效的 n 位格雷码 […] Continue reading
LeetCode 88 合并两个有序数组 2023年2月21日 feelshu Leave a comment 算法 给你两个按 非递减顺序 排列的整数数组 nums1 和 nums2,另有两个整数 m 和 n ,分别表示 nu […] Continue reading
LeetCode 87 扰乱字符串 2023年2月20日 feelshu Leave a comment 算法 使用下面描述的算法可以扰乱字符串 s 得到字符串 t : 给你两个 长度相等 的字符串 s1 和 s2,判断 […] Continue reading
LeetCode 86 分隔链表 2023年2月19日2023年2月19日 feelshu Leave a comment 算法 给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大 […] Continue reading
LeetCode 85 最大矩形 2023年2月19日 feelshu Leave a comment 算法 给定一个仅包含 0 和 1 、大小为 rows x cols 的二维二进制矩阵,找出只包含 1 的最大矩形,并 […] Continue reading