|
1 | 1 | LeetCode
|
2 | 2 | ========
|
3 | 3 |
|
4 |
| -Up to date (2014-12-30), there are total `172` problems on [LeetCode Online Judge](https://oj.leetcode.com/). |
| 4 | +Up to date (2014-12-31), there are total `173` problems on [LeetCode Online Judge](https://oj.leetcode.com/). |
5 | 5 | The number of problems is increasing recently.
|
6 |
| -Here is the classification of all `172` problems. |
| 6 | +Here is the classification of all `173` problems. |
7 | 7 | I'll keep updating for full summary and better solutions. Stay tuned for updates.
|
8 | 8 |
|
9 | 9 | ---
|
@@ -204,13 +204,16 @@ Problem | Solution | Time | Space | Difficul
|
204 | 204 | ##Stack
|
205 | 205 | Problem | Solution | Time | Space | Difficulty | Notes
|
206 | 206 | --------------- | --------------- | --------------- | --------------- | -------------- | -----
|
| 207 | +[Binary Search Tree Iterator] | [binary-search-tree-iterator.py] | _O(1)_| _O(logn)_| Medium |
207 | 208 | [Evaluate Reverse Polish Notation]| [evaluate-reverse-polish-notation.py]| _O(n)_| _O(n)_| Medium |
|
208 | 209 | [Longest Valid Parentheses]| [longest-valid-parentheses.py] | _O(n)_ | _O(1)_ | Hard |
|
209 | 210 | [Min Stack] | [min-stack.py] | _O(n)_ | _O(1)_ | Easy |
|
210 | 211 | [Simplify Path]| [simplify-path.py] | _O(n)_ | _O(n)_ | Medium |
|
211 | 212 | [Symmetric Tree]| [symmetric-tree.py] | _O(n)_ | _O(logn)_ | Easy |
|
212 | 213 | [Valid Parentheses]| [valid-parentheses.py] | _O(n)_ | _O(n)_ | Easy |
|
213 | 214 |
|
| 215 | +[Binary Search Tree Iterator]:https://oj.leetcode.com/problems/binary-search-tree-iterator/ |
| 216 | +[binary-search-tree-iterator.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/binary-search-tree-iterator.py |
214 | 217 | [Evaluate Reverse Polish Notation]:https://oj.leetcode.com/problems/evaluate-reverse-polish-notation/
|
215 | 218 | [evaluate-reverse-polish-notation.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/evaluate-reverse-polish-notation.py
|
216 | 219 | [Longest Valid Parentheses]:https://oj.leetcode.com/problems/longest-valid-parentheses/
|
|
0 commit comments