Please enable JavaScript.
Coggle requires JavaScript to display documents.
LeetCode Problem (Data Structures (Queue (BFS, Sliding Window, Implement…
LeetCode Problem
-
Dynamic Programming
-
Symbol: value only, max/min, true, false, number of solution
-
-
Binary Tree
Traversal
-
Recursion/Iterative
Pre-Order
stack, visited current node, then pushRight child, then left child
In-Order
Stack, push current and left child, then pop, then move pointer to the right
-
-
-
-
-
String
Palindrome
-
-
Recursion R(i, j) = R(i+1,j-1) + ( str(i) == str(j)
-