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篇文章
1618人学习
Go学习笔记
19篇文章
928人学习
全部文章
(共540篇)
Python 迭代器与生成器
迭代器 wiki百科:在 Python 中,迭代器是遵循迭代协议的对象。使用 iter() 从任何序列对象中得到迭代器(如 list, tuple, dictionary, set 等)。另一种形式的输入迭代器是 generator(生成器)。 举例 # 迭代器部分 # 简单的遍历方法 for i...
Python
2020-08-21
0
471
关系型数据库和非关系型数据库的区别
关系型数据库 定义:由二维表及其之间的联系所组成的一个数据组织。 举例:mysql/oracle/sql server/sqlite 优点: 易于维护:表结构 使用方便:SQL语言通用 复杂操作:支持SQL,支持复杂查询 缺点: 读写性能比较差 固定的表结构,灵活度稍欠 硬盘I/O是一个很大的...
数据库
2020-08-21
0
600
关于 Python 装饰器的一些个人理解
装饰器 本质是一个接受参数为函数的函数。 作用:为一个已经实现的方法添加额外的通用功能,比如日志记录、运行计时等。 举例 不带参数的装饰器,不用@ # 不带参数的装饰器 def deco_test(func): def wrapper(*args, **kwargs): ...
装饰器
Python
2020-08-21
0
510
LeetCode | 0098. Validate Binary Search Tree验证二叉搜索树【Python】
来自专栏
LeetCode 0098. Validate Binary Search Tree验证二叉搜索树【Medium】【Python】【二叉树】 Problem LeetCode Given a binary tree, determine if it is a valid binary search...
二叉树
LeetCode
Python
2020-06-28
0
548
LeetCode | 0700. 二叉搜索树中的搜索【Python】
来自专栏
LeetCode 0700. Search in a Binary Search Tree二叉搜索树中的搜索【Easy】【Python】【二叉树】 Problem LeetCode Given the root node of a binary search tree (BST) and a va...
二叉树
Python
LeetCode
2020-06-28
0
475
LeetCode | 0701. 二叉搜索树中的插入操作【Python】
来自专栏
LeetCode 0701. Insert into a Binary Search Tree 二叉搜索树中的插入操作【Medium】【Python】【二叉树】 Problem LeetCode Given the root node of a binary search tree (BST) a...
二叉树
Python
LeetCode
2020-06-28
0
436
LeetCode | 0450. Delete Node in a BST 删除二叉搜索树中的节点【Python】
来自专栏
LeetCode 0450. Delete Node in a BST 删除二叉搜索树中的节点【Medium】【Python】【二叉树】 Problem LeetCode Given a root node reference of a BST and a key, delete the node...
二叉树
LeetCode
Python
2020-06-28
0
540
LeetCode | 0100. Same Tree 相同的树【Python】
来自专栏
LeetCode 0100. Same Tree 相同的树【Easy】【Python】【二叉树】 Problem LeetCode Given two binary trees, write a function to check if they are the same or not. Two ...
二叉树
Python
LeetCode
2020-06-28
0
579
LeetCode | 1410. HTML Entity Parser HTML 实体解析器【Python】
来自专栏
LeetCode 1410. HTML Entity Parser HTML 实体解析器【Medium】【Python】【字符串】 Problem LeetCode HTML entity parser is the parser that takes HTML code as input and...
字符串
LeetCode
Python
2020-04-12
0
1618
LeetCode | 1409. 查询带键的排列【Python】
来自专栏
LeetCode 1409. Queries on a Permutation With Key查询带键的排列【Medium】【Python】【模拟】 Problem LeetCode Given the array queries of positive integers between 1 a...
模拟
Python
LeetCode
2020-04-12
0
560
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页