Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite9ea465

Browse files
author
Songkeys
committed
Translate README to en & add TG gourp link
1 parentd9ce7a1 commite9ea465

File tree

1 file changed

+89
-69
lines changed

1 file changed

+89
-69
lines changed

‎README.md

Lines changed: 89 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,66 @@
1-
#介绍
1+
#LeetCode-en
22

3-
![leetcode.jpeg](./assets/leetcode.jpeg)
3+
🚧 WIP. This repository is an English version translated from[azl397985856/leetcode](https://github.com/azl397985856/leetcode). Contribution is welcome!
44

5-
leetcode 题解,记录自己的 leetcode 解题之路。
5+
---
66

7-
本仓库目前分为四个部分:
7+
##Introduction
88

9-
- 第一个部分是leetcode 经典题目的解析,包括思路,关键点和具体的代码实现。
9+
![leetcode.jpeg](./assets/leetcode.jpeg)
1010

11-
- 第二部分是对于数据结构与算法的总结
11+
LeetCode Solutions: A Record of My Problem Solving Journey.
1212

13-
- 第三部分是 anki 卡片, 将 leetcode 题目按照一定的方式记录在 anki 中,方便大家记忆。
13+
This repository will be divided into four parts for now:
1414

15-
-第四部分是计划, 这里会记录将来要加入到以上三个部分内容
15+
-The first part is the solutions to some classic problems on LeetCode, including the idea thinkings, key points and code implementations.
1616

17-
>只有熟练掌握基础的数据结构与算法,才能对复杂问题迎刃有余。
17+
- The second part is the summary of data structures and algorithms.
1818

19-
##食用指南
19+
- The third part is[Anki flashcards](https://apps.ankiweb.net) that record the LeetCode problems in a certain way so as to make it easier to remember.
2020

21-
- 对于最近添加的部分, 后面会有 🆕 标注
22-
- 对于最近更新的部分, 后面会有 🖊 标注
23-
- 将来会在这里更新anki卡片
24-
- 这里有一份leetcode官方账号在知乎上给出的一个《互联网公司最常见的面试算法题有哪些?》的答案,我这里尽量去覆盖回答中的题目和知识点
25-
原文地址:https://www.zhihu.com/question/24964987/answer/586425979
21+
- The fourth part is future plans on content that would be introduced into the above parts.
2622

27-
- 这里有一张互联网公司面试中经常考察的问题类型总结的思维导图,我们可以结合图片中的信息分析一下。
23+
>Only when having mastered the basic data structures and algorithms can you solve complex problems easily.
2824
29-
![leetcode-zhihu](./assets//leetcode-zhihu.jpg)
3025

31-
(图片来自leetcode)
3226

33-
其中算法,主要是以下几种:
27+
##Usage Instructions
28+
29+
- For the parts that were added recently, there will be a 🆕 behind.
30+
- For the parts that were updated recently, there will be a 🖊 behind.
31+
- Here will be the place to update Anki Flashcards in the future as well.
32+
- Here is a mind mapping graph showing the summary of categorizations of problems that are questioned frequently in interviews. We could analyze according to the information in the graph.
33+
34+
![leetcode-zhihu](./assets//leetcode-zhihu.jpg)
3435

35-
- 基础技巧:分治、二分、贪心
36-
- 排序算法:快速排序、归并排序、计数排序
37-
- 搜索算法:回溯、递归、深度优先遍历,广度优先遍历,二叉搜索树等
38-
- 图论:最短路径、最小生成树
39-
- 动态规划:背包问题、最长子序列
36+
(Picture credited by[LeetCode-cn](https://www.zhihu.com/question/24964987/answer/586425979).)
4037

41-
数据结构,主要有如下几种:
38+
The algorithms mainly includes:
4239

43-
- 数组与链表:单 / 双向链表
44-
- 栈与队列
45-
- 哈希表
46-
- 堆:最大堆 / 最小堆
47-
- 树与图:最近公共祖先、并查集
48-
- 字符串:前缀树(字典树) / 后缀树
40+
- Basic skills: Divide-and-Conquer; Binary; Greedy
41+
- Sorting algorithms: Quicksort; Merge Sort; Counting Sort
42+
- Searching algorithms: Backtracking; Recursion; Depth-First-Search (DFS); Breath-First-Search (BFS); Binary Search Tree; etc.
43+
- Graph theory: Shortest Path Problem; Minimal Spanning Tree
44+
- Dynamic Programming: Knapsack Problem; Longest Common Subsequence (LCS) Problem
4945

46+
The data structures mainly includes:
5047

48+
- Array and linked list: Singly/Doubly-Linked List
49+
- Stack and queue
50+
- Hash table
51+
- Heap: Min-Max Heap
52+
- Tree and Graph: Lowest Common Ancestor (LCA); Disjoint-Set
53+
- String: Prefix Tree (Trie); Suffix Tree
5154

5255

53-
##精彩预告
5456

57+
##Previews
5558

5659
[0042.trapping-rain-water](./problems/42.trapping-rain-water.md):
5760

5861
![0042.trapping-rain-water](./assets/problems/42.trapping-rain-water-1.png)
5962

60-
[浏览器中的栈](./thinkings/basic-data-structure.md)
63+
[Stack in Browser](./thinkings/basic-data-structure.md)
6164

6265
![basic-data-structure-call-stack](./assets/thinkings/basic-data-structure-call-stack.png)
6366

@@ -73,18 +76,23 @@ leetcode 题解,记录自己的 leetcode 解题之路。
7376

7477
![454.4-sum-ii](./assets/problems/454.4-sum-ii.png)
7578

76-
##Top题目进度
79+
80+
81+
##Top Problems Progress
7782

7883
-[Top 100 Linked Questions](https://leetcode.com/problemset/top-100-liked-questions/) (44 / 100)
7984

8085
-[Top Interview Questions](https://leetcode.com/problemset/top-interview-questions/) (64 / 145)
81-
##传送门
8286

83-
###leetcode 经典题目的解析
8487

85-
>这里仅列举具有代表性题目,并不是全部题目
8688

87-
####简单难度
89+
##Portals
90+
91+
###Solutions to LeetCode Classic Problems
92+
93+
>Here only lists some representative problems but not all.
94+
95+
####Easy
8896

8997
-[0020.Valid Parentheses](./problems/20.validParentheses.md)
9098
-[0026.remove-duplicates-from-sorted-array](./problems/26.remove-duplicates-from-sorted-array.md)
@@ -105,7 +113,7 @@ leetcode 题解,记录自己的 leetcode 解题之路。
105113
-[0349.intersection-of-two-arrays](./problems/349.intersection-of-two-arrays.md)
106114

107115

108-
####中等难度
116+
####Medium
109117

110118
-[0002. Add Two Numbers](./problems/2.addTwoNumbers.md)
111119
-[0003. Longest Substring Without Repeating Characters](./problems/3.longestSubstringWithoutRepeatingCharacters.md)
@@ -154,7 +162,7 @@ leetcode 题解,记录自己的 leetcode 解题之路。
154162
-[0887.super-egg-drop](./problems/887.super-egg-drop.md)
155163
-[0900.rle-iterator](./problems/900.rle-iterator.md)
156164

157-
####困难难度
165+
####Hard
158166
-[0023.merge-k-sorted-lists](./problems/23.merge-k-sorted-lists.md)
159167
-[0042.trapping-rain-water](./problems/42.trapping-rain-water.md)
160168
-[0128.longest-consecutive-sequence](./problems/128.longest-consecutive-sequence.md) 🆕
@@ -164,35 +172,37 @@ leetcode 题解,记录自己的 leetcode 解题之路。
164172
-[0295.find-median-from-data-stream](./problems/295.find-median-from-data-stream.md) 🆕
165173
-[0301.remove-invalid-parentheses](./problems/301.remove-invalid-parentheses.md)
166174

167-
###数据结构与算法的总结
168175

169-
- 🖊[数据结构](./thinkings/basic-data-structure.md)(草稿)
170-
- 🖊[二叉树的遍历](./thinkings/binary-tree-traversal.md)
171-
-[动态规划](./thinkings/dynamic-programming.md)
172-
-[哈夫曼编码和游程编码](./thinkings/run-length-encode-and-huffman-encode.md)
173-
-[布隆过滤器](./thinkings/bloom-filter.md)
174176

175-
###anki 卡片
177+
###Summary of Data Structures and Algorithms
176178

177-
Anki主要分为两个部分:一部分是关键点到题目的映射,另一部分是题目到思路,关键点,代码的映射。
179+
- 🖊[Data Structure](./thinkings/basic-data-structure.md) (Drafts)
180+
- 🖊[Binary Tree Traversal](./thinkings/binary-tree-traversal.md)
181+
-[Dynamic Programming](./thinkings/dynamic-programming.md)
182+
-[Huffman Encode and Run Length Encode](./thinkings/run-length-encode-and-huffman-encode.md)
183+
-[Bloom Filter](./thinkings/bloom-filter.md)
178184

179-
全部卡片都在[anki-card](./assets/anki/leetcode.apkg)
180185

181-
使用方法:
182186

183-
anki - 文件 - 导入 - 下拉格式选择“打包的 anki集合”,然后选中你下载好的文件,确定即可。
187+
###Anki Flashcards
184188

185-
更多关于anki使用方法的请查看[anki官网](https://apps.ankiweb.net/)
189+
Anki falshcards would be mainly two parts: the mappings from key points to problems; the mappings from problems to idea thinks, key points and code implementations.
186190

187-
目前已更新卡片一览(仅列举正面):
191+
All flashcards are put in[anki-card](./assets/anki/leetcode.apkg).
188192

189-
- 二分法解决问题的关键点是什么,相关问题有哪些
190-
- 如何用栈的特点来简化操作, 涉及到的题目有哪些?
191-
- 双指针问题的思路以及相关题目有哪些?
192-
- 滑动窗口问题的思路以及相关题目有哪些?
193-
- 回溯法解题的思路以及相关题目有哪些?
193+
>Please check[here](https://apps.ankiweb.net/) for more about the usage of Anki.
194194
195-
###计划
195+
Latest updated flashcards (only lists the front page):
196+
197+
- What is the key point of the binary search algorithm? Related problems?
198+
- How to simplify the operations using the features of stacks? Related problems?
199+
- The thinkings and related problems of double-pointers problems?
200+
- The thinkings and related problems of sliding window problems?
201+
- The thinkings and related problems of backtracking?
202+
203+
204+
205+
###Future Plans
196206

197207
-[0494.target-sum](./todo/494.target-sum.js)
198208

@@ -204,24 +214,34 @@ anki - 文件 - 导入 - 下拉格式选择“打包的 anki集合”,然后
204214

205215
-[0365.water-and-jug-problem](./todo/365.water-and-jug-problem.js)
206216

207-
-[anki 卡片 完善](./assets/anki/)
217+
-[Complete Anki Flashcards](./assets/anki/)
218+
219+
-[Collection of String Problem](./todo/str/)
220+
208221

209-
-[字符串类问题汇总](./todo/str/)
210222

211-
##交流群
223+
##Community Chat Groups
212224

213-
现在还是初级阶段,需要大家的意见和反馈,为了减少沟通成本,我组建了交流群。大家可以扫码进入
225+
We're still on the early stage, so feedback from community is very welcome. For sake of reducing the costs of communication, I created some chat groups.
226+
227+
###Telegram
228+
229+
[http://t.me/leetcode_intl](http://t.me/leetcode_intl)
230+
231+
###QQ (For China Region)
214232

215233
![qq-group-chat](./assets/qq-group-chat.png)
216234

217-
(qq 群)
235+
###WeChat (For China Region)
218236

219237
![wechat-group-chat](./assets/wechat-group-chat.jpeg)
220238

221-
(由于微信的限制,100个人以上只能邀请加入, 你可以添加我的机器人回复“leetcode”拉你进群)
239+
(Add this bot and reply "leetcode" to join the group.)
240+
241+
222242

223-
##贡献
243+
##Contribution
224244

225-
-如果有想法和创意,请提[issue](https://github.com/azl397985856/leetcode/issues)或者进群提
226-
-如果想贡献代码,请提[PR](https://github.com/azl397985856/leetcode/pulls)
227-
-如果需要修改项目中图片,[这里](./assets/drawio/)存放了项目中绘制图的源代码, 大家可以用[draw.io](https://www.draw.io/)打开进行编辑。
245+
-If you have any ideas,[Issues](https://github.com/azl397985856/leetcode/issues) or chat in groups.
246+
-If you want to commit to the repository, Pull Request is welcome.
247+
-If you want to edit images resources in this project,[here](./assets/drawio/) lists the files that can be edited on[draw.io](https://www.draw.io/).

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp