/LeetCode

Learning Data Structure and Algorithm from Leetcode

Primary LanguagePython

leetcode

Learning data structure and algorithm from leetcode

方法 题号
快慢指针 141,142,287
方法 题号
递归剪枝 098
方法 题号
螺旋矩阵,遇到边界就换向 054, 059
方法 题号
优化空间复杂度O(mn)->O(2N)->O(N) 062
剑指offer 类型
二维数组中的查找 数组
重建二叉树
旋转数组的最小数字 双指针/分治
矩阵中的路径, 机器人的运动范围 DFS + 剪枝
数值的整数次幂 快速幂
二进制中1的个数 位运算