Liyi Zhang
XXX
Posts
2022/02/04
Leetcode
Leetcode hard
2022/02/04
Leetcode
Leetcode hard
2022/01/22
Leetcode
Leetcode hard
2022/01/18
Leetcode
Leetcode hard
2021/6/22
calculator
algorithm
leetcode
python
Simple implementation of basic calculator
Problem oriented bash code examples
2019/12/22
中文
Game
Javascript
React
PWA
WebGame
2019/10/25
中文
java
generics
收集整理一些比较难以理解的Java泛型问题,以及详细解释其中的原理
2019/10/22
中文
algorithm
math
string
大数乘法
2019/10/22
中文
algorithm
math
求线性同余方程ax+by=c的整数解
2019/10/22
中文
algorithm
python
Koch Curve(Koch Snowflake)
2019/10/22
中文
algorithm
linkedlist
判断链表中是否有环,如果有,找出链表中环的起始节点
2019/10/22
中文
algorithm
greedy
假设方阵中每个点都标有权值,问题是求方阵中两点之间的路径中所有点权值最大值的最小值
2019/10/22
中文
algorithm
regular-expression
DFA
使用正则判断n能否被3整除
2019/10/20
中文
algorithm
combination
permutation
bitwise
排列和组合
2019/10/20
中文
algorithm
dynamic-programming
如果给出一个点 (x,y),可以选择下一个点的坐标 (x+y,y),或者(x,x+y),那么,给出一个起点 (sx,sy),和终点(tx,ty),能否通过这样的变化,从起点到达终点
2019/10/5
中文
algorithm
array
给定一个允许出现重复元素的数组,判断最多可以分成多少段,使得段与段之间都是有序的
2019/10/5
中文
algorithm
string
Regular Expression Matching using * or .
2019/10/4
中文
Java
multi thread
synchronize
2019/7/7
中文
Java
multi thread
basic
2019/07/07
中文
Java
multi thread
java util
jdk
Java 多线程工具类 简介,包括 notify wait, CountDownLatch, ReentranceLock 等方法的功能和模拟
2019/6/15
中文
algorithm
graph
无向图中,顶点是数字,两个数字的最大公因子大于1时有边,求连通分量
2019/6/10
中文
algorithm
simulate
从一个香槟塔的顶端注入香槟,给出注入香槟的数量,求具体位置上的杯子中香槟的量
2019/3/10
中文
algorithm
tree
判断一棵树是否是完全二叉树
2019/3/8
中文
algorithm
array
linear time
给定一个n元素数组,求出现次数最大的元素(即Majority Element)
2019/3/4
中文
algorithm
string
求最长回文子串