Wonz
Wonz
全部文章
分类
# 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)
LeetCode个人题解(179)
PostgreSQL(3)
——————数学——————(1)
——————科研——————(1)
——————算法——————(13)
——————随笔——————(12)
—————人工智能—————(1)
南邮期末考试回忆and知识梳理(1)
实用小工具分享(2)
找工作(1)
归档
标签
去牛客网
登录
/
注册
Wonz
Enjoy Coding. Enjoy Life.
TA的专栏
198篇文章
1人订阅
LeetCode个人题解
179篇文章
1595人学习
Go学习笔记
19篇文章
869人学习
全部文章
(共9篇)
LeetCode | 0509. Fibonacci Number斐波那契数【Python】
来自专栏
LeetCode 0509. Fibonacci Number斐波那契数【Easy】【Python】【动态规划】 Problem LeetCode The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fi...
递归
动态规划
Python
LeetCode
2020-03-27
0
630
LeetCode | 面试题33. 二叉搜索树的后序遍历序列【剑指Offer】【Python】
来自专栏
LeetCode 面试题33. 二叉搜索树的后序遍历序列【剑指Offer】【Medium】【Python】【递归】 问题 力扣 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索...
递归
剑指Offer
二叉树
LeetCode
Python
2020-03-21
0
528
LeetCode | 0226. Invert Binary Tree翻转二叉树【Python】
来自专栏
LeetCode 0226. Invert Binary Tree翻转二叉树【Easy】【Python】【二叉树】【递归】 Problem LeetCode Invert a binary tree. Example: Input: 4 / \ 2 7 / \ ...
递归
二叉树
栈
LeetCode
Python
2020-03-19
0
573
LeetCode | 面试题27. 二叉树的镜像【剑指Offer】【Python】
来自专栏
LeetCode 面试题27. 二叉树的镜像【剑指Offer】【Easy】【Python】【二叉树】【递归】 问题 力扣 请完成一个函数,输入一个二叉树,该函数输出它的镜像。 例如输入: 4 / \ 2 7 / \ / \ 1 3 6 9镜像输出: ...
递归
剑指Offer
二叉树
LeetCode
Python
2020-03-19
0
788
LeetCode | 0106. 从中序与后序遍历序列构造二叉树【Python】
来自专栏
LeetCode 0106. Construct Binary Tree from Inorder and Postorder Traversal从中序与后序遍历序列构造二叉树【Medium】【Python】【二叉树】【递归】 Problem LeetCode Given inorder and ...
递归
二叉树
Python
LeetCode
2020-03-18
0
454
LeetCode | 0105. 从前序与中序遍历序列构造二叉树【Python】
来自专栏
LeetCode 0105. Construct Binary Tree from Preorder and Inorder Traversal从前序与中序遍历序列构造二叉树【Medium】【Python】【二叉树】【递归】 Problem LeetCode Given preorder and ...
递归
二叉树
LeetCode
Python
2020-03-18
0
707
LeetCode | 面试题07. 重建二叉树【剑指Offer】【Python】
来自专栏
LeetCode 面试题07. 重建二叉树【剑指Offer】【Medium】【Python】【二叉树】【递归】 问题 力扣 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 例如,给出 前序遍历 preorder = [3,9,20,1...
递归
剑指Offer
二叉树
LeetCode
Python
2020-03-18
0
522
LeetCode | 0543. Diameter of Binary Tree二叉树的直径【Python】
来自专栏
LeetCode 0543. Diameter of Binary Tree二叉树的直径【Easy】【Python】【递归】 Problem LeetCode Given a binary tree, you need to compute the length of the diameter o...
递归
LeetCode
Python
2020-03-10
0
524
LeetCode | 0047. Permutations II全排列 II【Python】
来自专栏
LeetCode 0047. Permutations II全排列 II【Medium】【Python】【回溯】 Problem LeetCode Given a collection of numbers that might contain duplicates, return all pos...
DFS
递归
回溯
LeetCode
Python
2020-03-05
0
561