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人学习
全部文章
(共181篇)
LeetCode | 0836. Rectangle Overlap矩形重叠【Python】
来自专栏
LeetCode 0836. Rectangle Overlap矩形重叠【Easy】【Python】【数学】 Problem LeetCode A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the...
数学
LeetCode
Python
2020-03-18
0
562
LeetCode | 0836. Rectangle Overlap矩形重叠【Python】
来自专栏
LeetCode 0836. Rectangle Overlap矩形重叠【Easy】【Python】【数学】 Problem LeetCode A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the...
数学
LeetCode
Python
2020-03-18
0
483
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
708
LeetCode | 面试题07. 重建二叉树【剑指Offer】【Python】
来自专栏
LeetCode 面试题07. 重建二叉树【剑指Offer】【Medium】【Python】【二叉树】【递归】 问题 力扣 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 例如,给出 前序遍历 preorder = [3,9,20,1...
递归
剑指Offer
二叉树
LeetCode
Python
2020-03-18
0
505
LeetCode | 面试题06. 从尾到头打印链表【剑指Offer】【Python】
来自专栏
LeetCode 面试题06. 从尾到头打印链表【剑指Offer】【Easy】【Python】【链表】 问题 力扣 输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。 示例 1: 输入:head = [1,3,2] 输出:[2,3,1]限制: 0 <= 链表长度 <=...
剑指Offer
链表
LeetCode
Python
2020-03-17
0
661
LeetCode | 面试题05. 替换空格【剑指Offer】【Python】
来自专栏
LeetCode 面试题05. 替换空格【剑指Offer】【Easy】【Python】【字符串】 问题 力扣 请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 示例 1: 输入:s = "We are happy." 输出:"We%20...
字符串
LeetCode
Python
2020-03-17
0
599
LeetCode | 0240. Search a 2D Matrix II搜索二维矩阵 II【Python】
来自专栏
LeetCode 0240. Search a 2D Matrix II搜索二维矩阵 II【Medium】【Python】【数组】 Problem LeetCode Write an efficient algorithm that searches for a value in an m x n...
数组
LeetCode
Python
2020-03-17
0
560
LeetCode | 面试题04. 二维数组中的查找【剑指Offer】【Easy】【Python】【数组】
来自专栏
LeetCode 面试题04. 二维数组中的查找【剑指Offer】【Easy】【Python】【数组】 问题 力扣 在一个 n * m 的二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。...
剑指Offer
数组
Python
LeetCode
2020-03-17
0
683
LeetCode | 面试题03. 数组中重复的数字【剑指Offer】【Easy】【Python】【数组】【哈希表】
来自专栏
LeetCode 面试题03. 数组中重复的数字【剑指Offer】【Easy】【Python】【数组】【哈希表】【排序】 问题 力扣 找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数...
剑指Offer
哈希
LeetCode
Python
2020-03-17
0
491
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页