LeetCode

简体中文 | English


Introduction

leetcode.jpeg

LeetCode Solutions: A Record of My Problem Solving Journey.

This repository will be divided into four parts for now:

  • The first part is the solutions to some classic problems on LeetCode, including the idea thinkings, key points and code implementations.

  • The second part is the summary of data structures and algorithms.

  • The third part is Anki flashcards that record the LeetCode problems in a certain way so as to make it easier to remember.

  • The fourth part is future plans on content that would be introduced into the above parts.

Only when having mastered the basic data structures and algorithms can you solve complex problems easily.

Usage Instructions

  • For the parts that were added recently, there will be a 🆕 behind.
  • For the parts that were updated recently, there will be a 🖊 behind.
  • Here will be the place to update Anki Flashcards in the future as well.
  • 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.

leetcode-zhihu

(Picture credited by LeetCode-cn.)

The algorithms mainly includes:

  • Basic skills: Divide-and-Conquer; Binary; Greedy
  • Sorting algorithms: Quicksort; Merge Sort; Counting Sort
  • Searching algorithms: Backtracking; Recursion; Depth-First-Search (DFS); Breath-First-Search (BFS); Binary Search Tree; etc.
  • Graph theory: Shortest Path Problem; Minimal Spanning Tree
  • Dynamic Programming: Knapsack Problem; Longest Common Subsequence (LCS) Problem

The data structures mainly includes:

  • Array and linked list: Singly/Doubly-Linked List
  • Stack and queue
  • Hash table
  • Heap: Min-Max Heap
  • Tree and Graph: Lowest Common Ancestor (LCA); Disjoint-Set
  • String: Prefix Tree (Trie); Suffix Tree

Previews

0042.trapping-rain-water:

0042.trapping-rain-water

Stack in Browser

basic-data-structure-call-stack

backtrack problems:

backtrack

0198.house-robber:

198.house-robber

0454.4-sum-ii:

454.4-sum-ii

Top Problems Progress

Portals

Solutions to LeetCode Classic Problems

Here only lists some representative problems but not all.

Easy

Medium

Hard

Summary of Data Structures and Algorithms

Anki Flashcards

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.

All flashcards are put in anki-card.

Please check here for more about the usage of Anki.

Latest updated flashcards (only lists the front page):

  • What is the key point of the binary search algorithm? Related problems?
  • How to simplify the operations using the features of stacks? Related problems?
  • The thinkings and related problems of double-pointers problems?
  • The thinkings and related problems of sliding window problems?
  • The thinkings and related problems of backtracking?
  • The thinkings and related problems of number theory?
  • The thinkings and related problems of bit operations?

WIP: the translation of the flashcards are on the way.

problems added:#2 #3 #11

Future Plans

Community Chat Groups

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.

Telegram

http://t.me/leetcode_intl

QQ (For China Region)

qq-group-chat

WeChat (For China Region)

wechat-group-chat

(Add this bot and reply "leetcode" to join the group.)

Contribution

  • If you have any ideas, Issues or chat in groups.
  • If you want to commit to the repository, Pull Request is welcome.
  • If you want to edit images resources in this project, here lists the files that can be edited on draw.io.

书籍推荐