LeetCode题型分类及索引
目录
暂时停更,博主在潜心研究JS...
这是一个对LeetCode题目归类的索引,分类标准参考了July大神的《编程之法》以及LeetCode的tag项。分类可能还不太合理,逐步完善,请见谅~
题主本人也在一点一点的刷题,这个目录跟着刷的题每天更新~ Hope you enjoy coding!
数组 Array
- 寻找和为定值的两个数
1.Two Sum
167.Two Sum II - 从数组移除元素
26.Remove Duplicates from Sorted Array
27.Remove Element
283.Move Zeroes - 最大连续子数组和
动态规划基本思想
53.Maximum Subarray - 杨辉三角问题
118.Pascal's Triangle
119.Pascal's Triangle II - 最佳买卖货物时间问题
121.Best Time to Buy and Sell Stock
122.Best Time to Buy and Sell Stock II - 合并有序数组
88.Merge Sorted Array - 给当前集合加元素
66.Plus One - 元素定位
35.Search Insert Position - 查找匹配
最大投票算法求出现次数超过一半的数字
169.Majority Element
用XOR找出数组中丢失数据
268.Missing Number
找出数组中第三大的数字
414.Third Maximum Number - 元素倒置或错位
189.Rotate Array - 找重复元素
217.Contains Duplicate
219.Contains Duplicate II
字符串 String
- 字符串匹配
28.Implement strStr
14.Longest Common Prefix
20.Valid Parentheses - 字符串转换
13.Roman to Integer - 字符串拆分及组合
38.Count and Say
堆栈 Stack
- String
20.Valid Parentheses