首页 > TAG信息列表 > Leetcode100
Leetcode力扣常考高频题-字符串
考察频率由两部分组成: Leetcode100题面试考察频率(https://codetop.cc/#/home)表格中默认超过30次即为高频题 题号 难度 题目描述 解法 考察频率 3 中等 最长不重复子串 哈希表记录字符上次出现位置 Leetcode100+高频 5 中等 最长回文子串 从中心扩展(两个轴) LeetcoLeetcode力扣常考高频题-回溯
考察频率由两部分组成: Leetcode100题面试考察频率(https://codetop.cc/#/home)表格中默认超过30次即为高频题 题号 难度 题目描述 解法 考察频率 17 中等 电话号码代表的字母组合 回溯 Leetcode100 22 中等 生成合法的满足数量的括号 回溯 Leetcode100 39 中等LeetCode100题之—4、一翻转二叉树(python)
翻转二叉树 题目描述答案步骤详解 题目描述 答案 步骤详解 分为两个步骤 1)利用二叉树的先序遍历 2)每次遍历都调整左右孩子的位置 # Definition for a binary tree node. # class TreeNode(object): # def __init__(self, val=0, left=None, right=None): #LeetCode100. 相同的树
class Solution { public boolean isSameTree(TreeNode p, TreeNode q) { if (p == null && q == null) return true; if (p == null || q == null) return false; if (p.val != q.val) return false; return isSameTree(p.left,