首页 > 代码库 > 【目录】Leetcode

【目录】Leetcode

不知不觉居然已经写了200多篇随笔了,现在查找的时候经常要翻好久,很不方便。故给自己做个目录~

 

Leetcode

1、动态规划

  1. Palindrome Partitioning II(hard) ☆
  2. Distinct Subsequences(hard)
  3. Edit Distance (hard)
  4. Interleaving String (hard)
  5. Regular Expression Matching (hard) ★
  6. Wildcard Matching(hard) ★ 大神太牛了
  7. Longest Valid Parentheses (hard)★
  8. Scramble String (hard)★
  9. Maximal Rectangle (hard)★
  10. Unique Binary Search Trees (middle)☆
  11. Minimum Path Sum(easy)
  12. Unique Binary Search Trees II (middle)☆
  13. Unique Binary Search Trees (middle)☆
  14. Unique Path ||(easy)
  15. Unique Path(easy)
  16. triangle(easy)
  17. Decode Ways(medium) 

2、回溯

  1. Restore IP Addresses (middle)
  2. Subsets II (middle) ☆
  3. Word Search (middle)

3、其他

  1. atoi (hard) ★
  2. Candy(hard) 自己做出来了 但别人的更好
  3. Substring with Concatenation of All Words (hard) ★
  4. Search a 2D Matrix (easy)
  5. 3Sum (medium)
  6. Binary Tree Maximum Path Sum (medium) 
  7. Convert Sorted Array to Binary Search Tree (easy)
  8. Subsets (Medium) ☆ 
  9. Binary Tree Postorder Traversal (hard) ☆
  10. Minimum Depth of Binary Tree (easy) 
  11. Plus One (easy)
  12. Climbing Stairs (easy)
  13. Best Time to Buy and Sell 3 (hard) 自己做出来了 但别人的更好
  14. Best Time to Buy and Sell 2(too easy)
  15. Best Time to Buy and Sell (easy)
  16. Single Number II (medium) ★ 自己没做出来....
  17. Single Number (Medium) ☆ 
  18. Valid Sudoku (easy)
  19. Two Sum (easy)
  20. length of last word (easy) 

【目录】Leetcode