Wonz
Wonz
全部文章
LeetCod...
# ACM(1)
# C++(32)
# C语言(12)
# Django(11)
# git(3)
# Hexo(6)
# HTML(1)
# LaTex学习(1)
# Linux(16)
# MySQL(1)
# PAT(46)
# Python(13)
# SQL数据库(10)
# 动态规划(13)
# 微型计算机原理与接口技术(16)
# 操作系统(9)
# 数据结构(28)
# 机器学习(4)
# 比赛感想与回忆(1)
# 汇编语言程序设计(11)
# 洛谷(4)
# 离散数学(5)
# 经验之谈(1)
# 编译原理(4)
# 计算机图形学(14)
# 资源汇总(5)
# 软件安装(34)
# 运筹学(5)
Go学习笔记(19)
PostgreSQL(3)
——————数学——————(1)
——————科研——————(1)
——————算法——————(13)
——————随笔——————(12)
—————人工智能—————(1)
南邮期末考试回忆and知识梳理(1)
实用小工具分享(2)
找工作(1)
归档
标签
去牛客网
登录
/
注册
Wonz
Enjoy Coding. Enjoy Life.
全部文章
/ LeetCode个人题解
(共163篇)
LeetCode | 0652. 寻找重复的子树【Python】
来自专栏
问题 力扣 给定一棵二叉树,返回所有重复的子树。对于同一类的重复子树,你只需要返回其中任意一棵的根结点即可。 两棵树重复是指它们具有相同的结构以及相同的结点值。 示例 1: 1 / \ 2 3 / / \ 4 2 4 / 4下面是两个重复的子树: 2...
二叉树
LeetCode
Python
2021-02-25
0
498
LeetCode | 0623. 在二叉树中增加一行【Python】
来自专栏
问题 力扣 给定一个二叉树,根节点为第1层,深度为 1。在其第 d 层追加一行值为 v 的节点。 添加规则:给定一个深度值 d (正整数),针对深度为 d-1 层的每一非空节点 N,为 N 创建两个值为 v 的左子树和右子树。 将 N 原先的左子树,连接为新节点 v 的左子树;将 N 原先的右子树,...
二叉树
LeetCode
Python
2021-02-25
0
468
LeetCode | 0606. 根据二叉树创建字符串【Python】
来自专栏
问题 力扣 你需要采用前序遍历的方式,将一个二叉树转换成一个由括号和整数组成的字符串。 空节点则用一对空括号 "()" 表示。而且你需要省略所有不影响字符串与原始二叉树之间的一对一映射关系的空括号对。 示例 1: 输入: 二叉树: [1,2,3,4] 1 ...
二叉树
LeetCode
Python
2021-02-24
0
510
LeetCode | 0590. N叉树的后序遍历【Python】
来自专栏
Problem LeetCode Given an n-ary tree, return the postorder traversal of its nodes' values. Nary-Tree input serialization is represented in their level...
DFS
二叉树
BFS
LeetCode
Python
2021-01-25
0
692
LeetCode | 0589. N叉树的前序遍历【Python】
来自专栏
Problem LeetCode Given an n-ary tree, return the preorder traversal of its nodes' values. Nary-Tree input serialization is represented in their level ...
DFS
二叉树
BFS
LeetCode
Python
2021-01-25
0
551
LeetCode | 0563. 二叉树的坡度【Python】
来自专栏
Problem LeetCode Given the root of a binary tree, return the sum of every tree node's tilt. The tilt of a tree node is the absolute difference between...
二叉树
LeetCode
Python
2021-01-23
0
503
LeetCode | 0559. N 叉树的最大深度【Python】
来自专栏
Problem LeetCode Given a n-ary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down t...
二叉树
LeetCode
Python
2021-01-23
0
381
LeetCode | 0783. 二叉搜索树节点最小距离【Python】
来自专栏
Problem LeetCode Given a Binary Search Tree (BST) with the root node root, return the minimum difference between the values of any two different nodes...
二叉树
LeetCode
Python
2021-01-21
0
601
LeetCode | 0530. 二叉搜索树的最小绝对差【Python】
来自专栏
Problem LeetCode Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: I...
二叉树
LeetCode
Python
2021-01-20
0
609
LeetCode | 0515. 在每个树行中找最大值【Python】
来自专栏
Problem LeetCode Given the root of a binary tree, return an array of the largest value in each row of the tree (0-indexed). Example 1: Input: root = ...
二叉树
LeetCode
Python
2021-01-20
0
530
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页