LeetCode

Sep.18 Mon

  1. Implement strStr()
    【i在外面,i< haystack - needle + 1】
    【 haystack(i + j) != needle(j)】

Sep.19 Tue

【155】 Min Stack
法1.用两个stack,其中minstack来【保留min】
法2.用一个stack,每次push gap,这个gap是min之间的。
【232】 Implement Queue using Stacks

Oct.2 Mon
旧题:

55.Jump Game
62.Unique Paths
63.Unique Paths II
64.Minimum Path Sum
70.Climbing Stairs
120.Triangle 【Check一下时间复杂度分析,还有memories怎么回事】

Oct.9 Mon
旧题:

45.Jump Game 2
【1.i只用到len-1. 2贪心算法,从begin到end,取能跳的最远步数去跳,when reach end,we must jump】

300.Longest Increasing Subsequence
【1.Brute Force :
Time complexity : O(2^n). Size of recursion tree will be 2^n
Space complexity : O(n^2). memo array of size n * n
2.Recursion with memorization
Time complexity : O(n^2)
Space complexity : O(n^2).
3.DP :Time complexity : O(n^2)
Space complexity : O(n).
4.DP+ binarySearch:】

以下题目为:DFS

78.subsets
90.subsets 2
【查重原方法】//千万别写成 i != 0比较了。
if (i != startIndex && nums[i]==nums[i-1]) { continue; }
【查重MY方法】
if(!result.contains(list)){result.add(new ArrayList<>(list));}
46.Permutations
【不能完全按照subset来做,因为3要放到1前面去啊】
【让3打头的方法:只要i不加1 就!行!了!,list.contains 去check】
47.Permutations 2
【查重原方法】1.用boolean[] 存是否用了这个数。2.此数用过就不用了。3.此数若和前一个数相等,且前一个数没有用过,则此数不能用。
125.Valid Palindrome
【1.Character.isLetterOrDigit(cHead) 】
【2.Character.toLowerCase(cHead)】
131.Palindrome Partitioning
39.Combination Sum
40.Combination Sum II
【神句:if( i > index && nums[i] == nums[i - 1]){continue;}】【体会这个i>index 的意思,不仅仅是说i!=0,而是表达了此时是新的开头了! 但数字重复了】【查重MY方法:既用boolean[]used, 又放了index=====》不放index的话,3会打头呀】

【*】140.word break 2
【1.HashMap(目的是为了memories,加速) 2. str.startWith(String) 】

以下题目为:from j to i 【Two pointer】

139.Word Break

   //hint 1: DP: boolean
   //hint 2 : from j to i
   //hint 3 : dict.contains, s.substring is 小写
  // substring不是index!!所以i必须到达length  `

以下题目为:二维格子

Distinct Subsequences
【"a" "" ans: 1】 s是“a”
【“” "a" ans: 0】
这就是s这一竖条全是1,t这一竖条全是0的原因。
【dp[i][j]表示的是:T.from(0,j) 在S.from(0,i) 里出现了几次】
意思就是:if(S.i ) = (T.j),
dp[i][j] = 没有算S.i时,T.j 已经出现过的次数(也就是 dp(i-1,j) ) 加上
用S.i来凑T.j ,那么之前的T.j就不能算了,只能算到T.(j)

Palindrome Partitioning 2
Edit Distance
97.Interleaving String
【法一、Memo + Recursion, 每次迭代的是:去掉s1的第i个后,s1.substring(i) //当然,写法肯定不是这样 】
【法二、DP 二维格子】:
想清楚dp[i][j] is true 的含义: 接了i个s1,第j个接的s2,true
也就是说,现在我们再接的必须是s2啊!
if dp( i-1 , j ) = true, then compare S1(i-1) vs S3(i+j -1);
if dp(i , j - 1) = true, then compare S2.(j - 1) vs S3(i + j - 1);
注意外围横竖都多加了一行,所以i j 得取到=length()
所以对于s1 和s2的index来说,就要一直i-1,j-1
【法三 DP with 1维】 : 既然是逐行扫描的,当然就可以以s2的长度来做一维

Longest Common Substring
Longest Common Subsequence

Oct.17 Tue
【新题】
29.Divide Two Integers
621.Task Scheduler

【lintcode】
Add Binary
【1. i>= 0 || j>= 0】
【2. 个位:取%, 十位:取/】
94.Binary Tree Inorder Traversal
102.Binary Tree Level Order Traversal
38.Count and Say
【StringBuilder sb = new StringBuilder()】
【char[] array = s.toCharArray() 】
【while(for int i (while(i) ) )】
【sb.append(count + String.valueOf(array[i]) ) 】
Merge Sorted Array
【3个while,from end to start ====>避免move!】
200.Number of Islands
【1.dfs】
【2.搜到的全部true变false】
Remove Duplicates from Sorted Array II
Reverse Linked List【prev ,current,next,current必须要到null,所以return的是prev】

  1. Reverse Linked List II
    【1.把后面所有的都是往pre和start中间插入】
    【2、记住prev和start的位置都是不变的,变的只有then】
    【3.一定是Then.next = pre.next, 而不是=start, 因为你是往pre的后面插入!】
    1.Two Sum
    【One hashmap, check map.contains(temp),which temp= target - nums[i]】
  2. Sqrt(x)
    【1. 用二分法。 2 .start from 1 not 0】

Oct 20
Nearest Exit
【dfs/bfs】

Oct 22
Anagrams【hashmap sort string】
278.First Bad Version

  1. Search in Rotated Sorted Array 【分两种情况以后,讨论target的范围一定两头都要!】
    81.Search in Rotated Sorted Array II
    240.Search a 2D Matrix II【从左下角,>target,y--,< target,x++】
  2. Rotate Array【三步翻转法】
    【No-Recursion:】
    BST preorder
    BST inorder
    BST postorder
    【Morris:???】

你可能感兴趣的:(LeetCode)