|
1 | 1 | #java-leetcode |
2 | 2 |
|
3 | | -The solutionof the first hundred programming problem for leetcode. |
| 3 | +The solutionfor[leetcode]("https://leetcode.cn/problemset/all/") by java programing language. |
4 | 4 |
|
5 | | -#LeetCode 100 |
| 5 | +#LeetCode |
6 | 6 |
|
7 | | -| ID| Solution| |
8 | | -|:----|:---------------------------------------------------------| |
9 | | -| 1|[两数之和](src/com/yeahqing/easy/_001/Solution.java)| |
10 | | -| 2|[两数相加](src/com/yeahqing/medium/_002/Solution.java)| |
11 | | -| 3|[无重复字符的最长子串](src/com/yeahqing/medium/_003/Solution.java)| |
12 | | -| 4|[寻找两个正序数组的中位数](src/com/yeahqing/hard/_004/Solution.java)| |
| 7 | +##Easy |
13 | 8 |
|
14 | | -#JianZhi Offer I |
| 9 | +| ID| Solution| Original Url| |
| 10 | +|:---:|:---------------------------------------------------------------|------------------------------------------------------------------| |
| 11 | +| 1|[1. 两数之和](src/com/yeahqing/easy/_001/Solution.java)|https://leetcode.cn/problems/two-sum/| |
| 12 | +| 2|[83. 删除排序链表中的重复元素](src/com/yeahqing/easy/_083/Solution.java)|https://leetcode.cn/problems/remove-duplicates-from-sorted-list/| |
| 13 | +| 3|[94. 二叉树的中序遍历](src/com/yeahqing/easy/_094/Solution.java)|https://leetcode.cn/problems/binary-tree-inorder-traversal/| |
| 14 | +| 4|[100. 相同的树](src/com/yeahqing/easy/_001/Solution.java)|https://leetcode.cn/problems/same-tree/| |
| 15 | +| 5|[160. 相交链表](src/com/yeahqing/easy/_160/Solution.java)|https://leetcode.cn/problems/intersection-of-two-linked-lists/| |
| 16 | +| 6|[303. 区域和检索 - 数组不可变](src/com/yeahqing/easy/_303/Solution.java)|https://leetcode.cn/problems/range-sum-query-immutable/| |
15 | 17 |
|
16 | | -| ID| Solution| |
17 | | -|-----|-------------------------------------------------------------------------------------| |
18 | | -| 56|[剑指 Offer 56 - I. 数组中数字出现的次数](src/com/yeahqing/jianzhioffer/_1_056_1/Solution.java)| |
| 18 | +##Medium |
19 | 19 |
|
20 | | -#JianZhi Offer II |
| 20 | +| ID| Solution| Original Url| |
| 21 | +|:---:|:----------------------------------------------------------------------|----------------------------------------------------------------------------------------------| |
| 22 | +| 1|[2. 两数相加](src/com/yeahqing/medium/_002/Solution.java)|https://leetcode.cn/problems/add-two-numbers/| |
| 23 | +| 2|[3. 无重复字符的最长子串](src/com/yeahqing/medium/_003/Solution.java)|https://leetcode.cn/problems/longest-substring-without-repeating-characters/| |
| 24 | +| 3|[15. 三数之和](src/com/yeahqing/medium/_015/Solution.java)|https://leetcode.cn/problems/3sum/| |
| 25 | +| 4|[105. 从前序与中序遍历序列构造二叉树](src/com/yeahqing/medium/_105/LeetCode105.java)|https://leetcode.cn/problems/construct-binary-tree-from-preorder-and-inorder-traversal/| |
| 26 | +| 5|[173. 二叉搜索树迭代器](src/com/yeahqing/medium/_173/Solution.java)|https://leetcode.cn/problems/binary-search-tree-iterator/| |
| 27 | +| 6|[621. 任务调度器](src/com/yeahqing/medium/_621/Solution.java)|https://leetcode.cn/problems/task-scheduler/| |
| 28 | +| 7|[1239. 串联字符串的最大长度](src/com/yeahqing/medium/_1239/LeetCode1239.java)|https://leetcode.cn/problems/maximum-length-of-a-concatenated-string-with-unique-characters/| |
21 | 29 |
|
22 | | -| ID| Solution| |
23 | | -|-----|-----------------------------------------------------------------------------| |
24 | | -| 1|[剑指 Offer II 001. 整数除法](src/com/yeahqing/jianzhioffer/_2_001/Solution.java)| |
| 30 | +##Hard |
| 31 | + |
| 32 | +| ID| Solution| Original Url| |
| 33 | +|:---:|:------------------------------------------------------------|-----------------------------------------------------------| |
| 34 | +| 1|[4. 寻找两个正序数组的中位数](src/com/yeahqing/hard/_004/Solution.java)|https://leetcode.cn/problems/median-of-two-sorted-arrays/| |
| 35 | +| 2|[212. 单词搜索 II](src/com/yeahqing/hard/_212/Solution.java)|https://leetcode.cn/problems/word-search-ii/| |
| 36 | + |
| 37 | +#JianZhi Offer |
| 38 | + |
| 39 | +| ID| Solution| Original Url| |
| 40 | +|:---:|-------------------------------------------------------------------------------------|---------------------------------------------------------------------------| |
| 41 | +| 1|[剑指 Offer 38. 字符串的排列](src/com/yeahqing/jianzhioffer/_1_038/Solution.java)|https://leetcode.cn/problems/zi-fu-chuan-de-pai-lie-lcof/| |
| 42 | +| 2|[剑指 Offer 56 - I. 数组中数字出现的次数](src/com/yeahqing/jianzhioffer/_1_056_1/Solution.java)|https://leetcode.cn/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof/| |
| 43 | +| 3|[剑指 Offer II 001. 整数除法](src/com/yeahqing/jianzhioffer/_2_001/Solution.java)|https://leetcode.cn/problems/xoh6Oh/| |