LeetCode 121 买卖股票的最佳时机 2023年3月19日 feelshu Leave a comment 算法 给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。 你只 […] Continue reading
LeetCode 120 三角形最小路径和 2023年3月19日 feelshu Leave a comment 算法 给定一个三角形 triangle ,找出自顶向下的最小路径和。 每一步只能移动到下一行中相邻的结点上。相邻的结 […] Continue reading
LeetCode 119 杨辉三角 II 2023年3月18日 feelshu Leave a comment 算法 给定一个非负索引 rowIndex,返回「杨辉三角」的第 rowIndex 行。 在「杨辉三角」中,每个数是它 […] Continue reading
LeetCode 118 杨辉三角 2023年3月17日2023年3月17日 feelshu Leave a comment 算法 给定一个非负整数 numRows,生成「杨辉三角」的前 numRows 行。 在「杨辉三角」中,每个数是它左上 […] Continue reading
LeetCode 117 填充每个节点的下一个右侧节点指针 II 2023年3月17日 feelshu Leave a comment 算法 给定一个二叉树: 填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 […] Continue reading
LeetCode 116 填充每个节点的下一个右侧节点指针 2023年3月17日2023年3月17日 feelshu Leave a comment 算法 给定一个 完美二叉树 ,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下: 填充它的每个 n […] Continue reading
LeetCode 115 不同的子序列 2023年3月15日2023年3月15日 feelshu Leave a comment 算法 给定一个字符串 s 和一个字符串 t ,计算在 s 的子序列中 t 出现的个数。 字符串的一个 子序列 是指, […] Continue reading
LeetCode 114 二叉树展开为链表 2023年3月14日2023年3月14日 feelshu Leave a comment 算法 给你二叉树的根结点 root ,请你将它展开为一个单链表: 展开后的单链表应该同样使用 TreeNode ,其 […] Continue reading
LeetCode 113 路径总和 II 2023年3月13日2023年3月13日 feelshu Leave a comment 算法 给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等 […] Continue reading
LeetCode 112 路径总和 2023年3月12日 feelshu Leave a comment 算法 给你二叉树的根节点 root 和一个表示目标和的整数 targetSum 。判断该树中是否存在 根节点到叶子节 […] Continue reading