Skip to content

Commit 4b8739a

Browse files
committed
更新英文版目录
1 parent 99a7340 commit 4b8739a

File tree

4 files changed

+53
-53
lines changed

4 files changed

+53
-53
lines changed

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Englis translation is still processing... Some article are still Chinese, but most are completed, just enjoy.
1+
Englis translation is still processing... Some articles are still Chinese, but most are completed, just enjoy.
22

3-
These articles are somehow kinds of **Algorithmic Thinking**. All based on LeetCode problems, but NOT only the code of solution, but also **why** writing code this way, **how** we figure it out.
3+
These articles are somehow kinds of **Algorithmic Thinking**. All based on LeetCode problems, but **NOT only the code of solution, but also WHY writing code this way, HOW we figure it out.**
44

55
I don't like one liner but confusing, I like clear and easy-understand.
66

@@ -21,11 +21,11 @@ I don't like one liner but confusing, I like clear and easy-understand.
2121
* [How to Scheduling Seats](interview/Seatscheduling.md)
2222
* [Union-Find Algorithm in Detail](think_like_computer/Union-find-Explanation.md)
2323
* [Union-Find Application](think_like_computer/Union-Find-Application.md)
24-
* [如何运用二分查找算法](高频面试系列/koko偷香蕉.md)
25-
* [如何寻找缺失和重复的元素](高频面试系列/缺失和重复的元素.md)
26-
* [如何判断回文链表](高频面试系列/判断回文链表.md)
27-
* [一行代码就能解决的算法题](高频面试系列/一行代码解决的智力题.md)
28-
* [二分查找高效判定子序列](高频面试系列/二分查找判定子序列.md)
24+
* [Find Sebesquence With Binary Search](interview/findSebesquenceWithBinarySearch.md)
25+
* [如何运用二分查找算法](interview/koko偷香蕉.md)
26+
* [如何寻找缺失和重复的元素](interview/缺失和重复的元素.md)
27+
* [如何判断回文链表](interview/判断回文链表.md)
28+
* [一行代码就能解决的算法题](interview/一行代码解决的智力题.md)
2929

3030
* II. Data Structure
3131
* [Binary Head and Priority Queue](data_structure/binary_heap_implements_priority_queues.md)
@@ -36,8 +36,8 @@ I don't like one liner but confusing, I like clear and easy-understand.
3636
* [Design Twitter](data_structure/design_Twitter.md)
3737
* [Reverse Part of Linked List via Recursion](data_structure/reverse_part_of_a_linked_list_via_recursion.md)
3838
* [Queue Implement Stack/Stack implement Queue](data_structure/ImplementQueueUsingStacksImplementStackUsingQueues.md)
39-
* [学习算法和刷题的思路指南](算法思维系列/学习数据结构和算法的高效方法.md)
40-
* [学习数据结构和算法读什么书](算法思维系列/为什么推荐算法4.md)
39+
* [学习算法和刷题的思路指南](think_like_computer/学习数据结构和算法的高效方法.md)
40+
* [学习数据结构和算法读什么书](think_like_computer/为什么推荐算法4.md)
4141

4242
* III. Algorithmic thinking
4343
* [My Way to Learn Algorithm](think_like_computer/ThewaytoAlgorithmlearning.md)
@@ -50,15 +50,15 @@ I don't like one liner but confusing, I like clear and easy-understand.
5050
* [FloodFill Algorithm in Detail](think_like_computer/flood_fill.md)
5151
* [Interval Scheduling: Interval Merging](think_like_computer/Interval%20Problem%20(II)%20Interval%20Merging.md)
5252
* [Interval Scheduling: Intersections of Intervals](think_like_computer/Interval%20Problem%20(III)%20Interval%20Intersection.md)
53-
* [烧饼排序](算法思维系列/烧饼排序.md)
54-
* [滑动窗口技巧](算法思维系列/滑动窗口技巧.md)
55-
* [字符串乘法](算法思维系列/字符串乘法.md)
56-
* [常用的位操作](算法思维系列/常用的位操作.md)
57-
* [信封嵌套问题](算法思维系列/信封嵌套问题.md)
58-
* [回溯算法团灭排列、组合、子集问题](高频面试系列/子集排列组合.md)
59-
* [几个反直觉的概率问题](算法思维系列/几个反直觉的概率问题.md)
60-
* [洗牌算法](算法思维系列/洗牌算法.md)
61-
* [递归详解](算法思维系列/递归详解.md)
53+
* [烧饼排序](think_like_computer/烧饼排序.md)
54+
* [滑动窗口技巧](think_like_computer/滑动窗口技巧.md)
55+
* [字符串乘法](think_like_computer/字符串乘法.md)
56+
* [常用的位操作](think_like_computer/常用的位操作.md)
57+
* [信封嵌套问题](think_like_computer/信封嵌套问题.md)
58+
* [回溯算法团灭排列、组合、子集问题](interview/子集排列组合.md)
59+
* [几个反直觉的概率问题](think_like_computer/几个反直觉的概率问题.md)
60+
* [洗牌算法](think_like_computer/洗牌算法.md)
61+
* [递归详解](think_like_computer/递归详解.md)
6262

6363
* IV. Dynamic Programming
6464
* [Classic DP: Edit Distance](dynamic_programming/EditDistance.md)
@@ -69,17 +69,17 @@ I don't like one liner but confusing, I like clear and easy-understand.
6969
* [Regular Expression](dynamic_programming/RegularExpression.md)
7070
* [The Strategies of Subsequence Problem](dynamic_programming/StrategiesForSubsequenceProblem.md)
7171
* [Greedy: Interval Scheduling](dynamic_programming/Interval%20Problem%20(I)%20Interval%20Scheduling.md)
72-
* [动态规划详解](动态规划系列/动态规划详解进阶.md)
73-
* [动态规划答疑篇](动态规划系列/最优子结构.md)
74-
* [动态规划设计:最长递增子序列](动态规划系列/动态规划设计:最长递增子序列.md)
75-
* [动态规划之KMP字符匹配算法](动态规划系列/动态规划之KMP字符匹配算法.md)
76-
* [团灭 LeetCode 股票买卖问题](动态规划系列/团灭股票问题.md)
77-
* [团灭 LeetCode 打家劫舍问题](动态规划系列/抢房子.md)
78-
* [动态规划之四键键盘](动态规划系列/动态规划之四键键盘.md)
72+
* [动态规划详解](dynamic_programming/动态规划详解进阶.md)
73+
* [动态规划答疑篇](dynamic_programming/最优子结构.md)
74+
* [动态规划设计:最长递增子序列](dynamic_programming/动态规划设计:最长递增子序列.md)
75+
* [动态规划之KMP字符匹配算法](dynamic_programming/动态规划之KMP字符匹配算法.md)
76+
* [团灭 LeetCode 股票买卖问题](dynamic_programming/团灭股票问题.md)
77+
* [团灭 LeetCode 打家劫舍问题](dynamic_programming/抢房子.md)
78+
* [动态规划之四键键盘](dynamic_programming/动态规划之四键键盘.md)
7979

8080
* V. Common Knowledge
8181
* [Difference Between Process and Thread in Linux](common_knowledge/linuxProcess.md)
8282
* [You Must Know About Linux Shell](common_knowledge/linuxshell.md)
8383
* [You Must Know About Cookie and Session](common_knowledge/SessionAndCookie.md)
84-
* [加密算法的前身今世](技术/密码技术.md)
85-
* [Git/SQL/正则表达式的在线练习平台](技术/在线练习平台.md)
84+
* [加密算法的前身今世](common_knowledge/密码技术.md)
85+
* [Git/SQL/正则表达式的在线练习平台](common_knowledge/在线练习平台.md)

SUMMARY.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* [How to Scheduling Seats](interview/Seatscheduling.md)
1515
* [Union-Find Algorithm in Detail](think_like_computer/Union-find-Explanation.md)
1616
* [Union-Find Application](think_like_computer/Union-Find-Application.md)
17-
* [如何运用二分查找算法](高频面试系列/koko偷香蕉.md)
18-
* [如何寻找缺失和重复的元素](高频面试系列/缺失和重复的元素.md)
19-
* [如何判断回文链表](高频面试系列/判断回文链表.md)
20-
* [一行代码就能解决的算法题](高频面试系列/一行代码解决的智力题.md)
21-
* [二分查找高效判定子序列](高频面试系列/二分查找判定子序列.md)
17+
* [Find Sebesquence With Binary Search](interview/findSebesquenceWithBinarySearch.md)
18+
* [如何运用二分查找算法](interview/koko偷香蕉.md)
19+
* [如何寻找缺失和重复的元素](interview/缺失和重复的元素.md)
20+
* [如何判断回文链表](interview/判断回文链表.md)
21+
* [一行代码就能解决的算法题](interview/一行代码解决的智力题.md)
2222

2323
* II. Data Structure
2424
* [Binary Head and Priority Queue](data_structure/binary_heap_implements_priority_queues.md)
@@ -29,8 +29,8 @@
2929
* [Design Twitter](data_structure/design_Twitter.md)
3030
* [Reverse Part of Linked List via Recursion](data_structure/reverse_part_of_a_linked_list_via_recursion.md)
3131
* [Queue Implement Stack/Stack implement Queue](data_structure/ImplementQueueUsingStacksImplementStackUsingQueues.md)
32-
* [学习算法和刷题的思路指南](算法思维系列/学习数据结构和算法的高效方法.md)
33-
* [学习数据结构和算法读什么书](算法思维系列/为什么推荐算法4.md)
32+
* [学习算法和刷题的思路指南](think_like_computer/学习数据结构和算法的高效方法.md)
33+
* [学习数据结构和算法读什么书](think_like_computer/为什么推荐算法4.md)
3434

3535
* III. Algorithmic thinking
3636
* [My Way to Learn Algorithm](think_like_computer/ThewaytoAlgorithmlearning.md)
@@ -43,15 +43,15 @@
4343
* [FloodFill Algorithm in Detail](think_like_computer/flood_fill.md)
4444
* [Interval Scheduling: Interval Merging](think_like_computer/Interval%20Problem%20(II)%20Interval%20Merging.md)
4545
* [Interval Scheduling: Intersections of Intervals](think_like_computer/Interval%20Problem%20(III)%20Interval%20Intersection.md)
46-
* [烧饼排序](算法思维系列/烧饼排序.md)
47-
* [滑动窗口技巧](算法思维系列/滑动窗口技巧.md)
48-
* [字符串乘法](算法思维系列/字符串乘法.md)
49-
* [常用的位操作](算法思维系列/常用的位操作.md)
50-
* [信封嵌套问题](算法思维系列/信封嵌套问题.md)
51-
* [回溯算法团灭排列、组合、子集问题](高频面试系列/子集排列组合.md)
52-
* [几个反直觉的概率问题](算法思维系列/几个反直觉的概率问题.md)
53-
* [洗牌算法](算法思维系列/洗牌算法.md)
54-
* [递归详解](算法思维系列/递归详解.md)
46+
* [烧饼排序](think_like_computer/烧饼排序.md)
47+
* [滑动窗口技巧](think_like_computer/滑动窗口技巧.md)
48+
* [字符串乘法](think_like_computer/字符串乘法.md)
49+
* [常用的位操作](think_like_computer/常用的位操作.md)
50+
* [信封嵌套问题](think_like_computer/信封嵌套问题.md)
51+
* [回溯算法团灭排列、组合、子集问题](interview/子集排列组合.md)
52+
* [几个反直觉的概率问题](think_like_computer/几个反直觉的概率问题.md)
53+
* [洗牌算法](think_like_computer/洗牌算法.md)
54+
* [递归详解](think_like_computer/递归详解.md)
5555

5656
* IV. Dynamic Programming
5757
* [Classic DP: Edit Distance](dynamic_programming/EditDistance.md)
@@ -62,17 +62,17 @@
6262
* [Regular Expression](dynamic_programming/RegularExpression.md)
6363
* [The Strategies of Subsequence Problem](dynamic_programming/StrategiesForSubsequenceProblem.md)
6464
* [Greedy: Interval Scheduling](dynamic_programming/Interval%20Problem%20(I)%20Interval%20Scheduling.md)
65-
* [动态规划详解](动态规划系列/动态规划详解进阶.md)
66-
* [动态规划答疑篇](动态规划系列/最优子结构.md)
67-
* [动态规划设计:最长递增子序列](动态规划系列/动态规划设计:最长递增子序列.md)
68-
* [动态规划之KMP字符匹配算法](动态规划系列/动态规划之KMP字符匹配算法.md)
69-
* [团灭 LeetCode 股票买卖问题](动态规划系列/团灭股票问题.md)
70-
* [团灭 LeetCode 打家劫舍问题](动态规划系列/抢房子.md)
71-
* [动态规划之四键键盘](动态规划系列/动态规划之四键键盘.md)
65+
* [动态规划详解](dynamic_programming/动态规划详解进阶.md)
66+
* [动态规划答疑篇](dynamic_programming/最优子结构.md)
67+
* [动态规划设计:最长递增子序列](dynamic_programming/动态规划设计:最长递增子序列.md)
68+
* [动态规划之KMP字符匹配算法](dynamic_programming/动态规划之KMP字符匹配算法.md)
69+
* [团灭 LeetCode 股票买卖问题](dynamic_programming/团灭股票问题.md)
70+
* [团灭 LeetCode 打家劫舍问题](dynamic_programming/抢房子.md)
71+
* [动态规划之四键键盘](dynamic_programming/动态规划之四键键盘.md)
7272

7373
* V. Common Knowledge
7474
* [Difference Between Process and Thread in Linux](common_knowledge/linuxProcess.md)
7575
* [You Must Know About Linux Shell](common_knowledge/linuxshell.md)
7676
* [You Must Know About Cookie and Session](common_knowledge/SessionAndCookie.md)
77-
* [加密算法的前身今世](技术/密码技术.md)
78-
* [Git/SQL/正则表达式的在线练习平台](技术/在线练习平台.md)
77+
* [加密算法的前身今世](common_knowledge/密码技术.md)
78+
* [Git/SQL/正则表达式的在线练习平台](common_knowledge/在线练习平台.md)
File renamed without changes.

翻译约定(必读).md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
3、**加粗等信息需要保留,同时鼓励扩展自己的知识**,增加参考文献,将重要知识点添加粗体或使用英语(或其他语言)特有的表达形式来表达某些思想。
2020

21-
4、对于图片,很少包含汉字,如果不影响理解,比如图片右下角的公众号水印,就不必修改了。**如果汉字涉及算法理解,需要把图片一同修改了**,把汉字抹掉换成英文,或者汉字比较少的话,在汉字旁添加对应英文。**对于一些描述题目的图片**,都是我在中文版 LeetCode 上截的图,你可以去英文版 LeetCode 上寻找对应题目截图替换,如果不知道是哪一题,可以在 issue 留言我给你找。原中文 md 文件需要删除。
21+
4、对于图片,很少包含汉字,如果不影响理解,比如图片右下角的公众号水印,就不必修改了。**如果汉字涉及算法理解,需要把图片一同修改了**,把汉字抹掉换成英文,或者汉字比较少的话,在汉字旁添加对应英文。**对于一些描述题目的图片**,都是我在中文版 LeetCode 上截的图,你可以去英文版 LeetCode 上寻找对应题目截图替换,如果不知道是哪一题,可以在 issue 留言我给你找。
2222

2323
5、**保持原有的目录结构,但文件和文件夹的名称应改为英文**,md 文件的名称根据具体文章内容修改成恰当的英文(文件名不要带空格),文章引用的图片路径有时也会包含中文,需要你将装有该图片的文件夹改成适当的英文。**翻译完成后需要删除原中文的 md 文件**,如增加了英文版图片,也应该把中文原版的图片删除。
2424

0 commit comments

Comments
 (0)