ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
人手一本的算法书
2
Introduction to Algorithms, 3rd Edition
3
4
5
6
Total4711
7
8
IdNameDifficultySimilar ProblemsCommentsYoutubeBiliPost
9
208Implement Trie (Prefix Tree)★★★648676677720745211Triehttps://youtu.be/f48wGD-MuQwhttps://zxi.mytechroad.com/blog/data-structure/leetcode-208-implement-trie-prefix-tree/
10
307Range Sum Query - Mutable★★★BIT/Segment Tree
11
901Online Stock Span★★★9071019monotonic stackhttps://youtu.be/RGRC46zHB98https://zxi.mytechroad.com/blog/stack/leetcode-901-online-stock-span/
12
239Sliding Window Maximum★★★monotonic queue
13
★★★
14
★★★★
15
★★★
16
★★★
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100