Skip to content

Commit 1a88722

Browse files
committed
✨update: Modify articles
1 parent 52bc948 commit 1a88722

13 files changed

+19
-19
lines changed

LeetCode/1331-1340/1337. 矩阵中战斗力最弱的 K 行(简单).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[1337. 矩阵中战斗力最弱的 K 行](https://leetcode-cn.com/problems/the-k-weakest-rows-in-a-matrix/solution/gong-shui-san-xie-yi-ti-shuang-jie-po-su-7okx/)** ,难度为 **简单**
44

5-
Tag : 「优先队列」、「二分」
5+
Tag : 「优先队列(堆)」、「二分」
66

77

88

LeetCode/1801-1810/1801. 积压订单中的订单总数(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[1801. 积压订单中的订单总数](https://leetcode-cn.com/problems/number-of-orders-in-the-backlog/solution/gss-by-ac_oier-4pqk/)** ,难度为 **中等**
44

5-
Tag : 「数据结构」、「模拟」、「优先队列」
5+
Tag : 「数据结构」、「模拟」、「优先队列(堆)
66

77

88

LeetCode/1831-1840/1834. 单线程 CPU(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[1834. 单线程 CPU](https://leetcode-cn.com/problems/single-threaded-cpu/solution/gong-shui-san-xie-shu-ju-jie-gou-yun-yon-1qk0/)** ,难度为 **中等**
44

5-
Tag : 「模拟」、「排序」、「优先队列」
5+
Tag : 「模拟」、「排序」、「优先队列(堆)
66

77

88

LeetCode/211-220/218. 天际线问题(困难).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[218. 天际线问题](https://leetcode-cn.com/problems/the-skyline-problem/solution/gong-shui-san-xie-sao-miao-xian-suan-fa-0z6xc/)** ,难度为 **困难**
44

5-
Tag : 「扫描线问题」、「优先队列」
5+
Tag : 「扫描线问题」、「优先队列(堆)
66

77

88

LeetCode/311-320/313. 超级丑数(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[313. 超级丑数](https://leetcode-cn.com/problems/super-ugly-number/solution/gong-shui-san-xie-yi-ti-shuang-jie-you-x-jyow/)** ,难度为 **中等**
44

5-
Tag : 「优先队列」、「多路归并」
5+
Tag : 「优先队列(堆)」、「多路归并」
66

77

88

LeetCode/371-380/373. 查找和最小的K对数字(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[373. 查找和最小的K对数字](https://leetcode-cn.com/problems/find-k-pairs-with-smallest-sums/solution/gong-shui-san-xie-duo-lu-gui-bing-yun-yo-pgw5/)** ,难度为 **中等**
44

5-
Tag : 「优先队列」、「二分」、「多路归并」
5+
Tag : 「优先队列(堆)」、「二分」、「多路归并」
66

77

88

LeetCode/471-480/480. 滑动窗口中位数(困难).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[480. 滑动窗口中位数](https://leetcode-cn.com/problems/sliding-window-median/solution/xiang-jie-po-su-jie-fa-you-xian-dui-lie-mo397/)** ,难度为 **困难**
44

5-
Tag : 「滑动窗口」、「堆」、「优先队列(堆)」
5+
Tag : 「滑动窗口」、「优先队列(堆)」
66

77

88

LeetCode/691-700/692. 前K个高频单词(中等).md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
这是 LeetCode 上的 **[692. 前K个高频单词](https://leetcode-cn.com/problems/top-k-frequent-words/solution/gong-shui-san-xie-xiang-jie-shi-yong-ha-8dxt2/)** ,难度为 **中等**
44

5-
Tag : 「哈希表」、「优先队列」
5+
Tag : 「哈希表」、「优先队列(堆)
66

77

88

99

10-
给一非空的单词列表,返回前 k 个出现次数最多的单词。
10+
给一非空的单词列表,返回前 `k` 个出现次数最多的单词。
1111

1212
返回的答案应该按单词出现频率由高到低排序。
1313

@@ -34,12 +34,12 @@ Tag : 「哈希表」、「优先队列」
3434
```
3535

3636
注意:
37-
* 假定 k 总为有效值, 1 ≤ k ≤ 集合元素数。
37+
* 假定 `k` 总为有效值,`1 ≤ k ≤ 集合元素数`
3838
* 输入的单词均由小写字母组成。
3939

4040

4141
扩展练习:
42-
* 尝试以 O(n log k) 时间复杂度和 O(n) 空间复杂度解决。
42+
* 尝试以 $O(n\log{k})$ 时间复杂度和 $O(n)$ 空间复杂度解决。
4343

4444
---
4545

LeetCode/721-730/726. 原子的数量(困难).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[726. 原子的数量](https://leetcode-cn.com/problems/number-of-atoms/solution/gong-shui-san-xie-shi-yong-xiao-ji-qiao-l5ak4/)** ,难度为 **困难**
44

5-
Tag : 「模拟」、「数据结构运用」、「栈」、「哈希表」、「优先队列」
5+
Tag : 「模拟」、「数据结构运用」、「栈」、「哈希表」、「优先队列(堆)
66

77

88

LeetCode/781-790/786. 第 K 个最小的素数分数(困难).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[786. 第 K 个最小的素数分数](https://leetcode-cn.com/problems/k-th-smallest-prime-fraction/solution/gong-shui-san-xie-yi-ti-shuang-jie-you-x-8ymk/)** ,难度为 **困难**
44

5-
Tag : 「优先队列」、「多路归并」、「二分」、「双指针」
5+
Tag : 「优先队列(堆)」、「多路归并」、「二分」、「双指针」
66

77

88

LeetCode/841-850/846. 一手顺子(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[846. 一手顺子](https://leetcode-cn.com/problems/hand-of-straights/solution/gong-shui-san-xie-shu-ju-jie-gou-mo-ni-t-4hxw/)** ,难度为 **中等**
44

5-
Tag : 「模拟」、「优先队列」、「哈希表」
5+
Tag : 「模拟」、「优先队列(堆)」、「哈希表」
66

77

88

LeetCode/981-990/987. 二叉树的垂序遍历(困难).md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
这是 LeetCode 上的 **[987. 二叉树的垂序遍历](https://leetcode-cn.com/problems/vertical-order-traversal-of-a-binary-tree/solution/gong-shui-san-xie-yi-ti-shuang-jie-dfs-h-wfm3/)** ,难度为 **困难**
44

5-
Tag : 「数据结构运用」、「二叉树」、「哈希表」、「排序」、「优先队列」、「DFS」
5+
Tag : 「数据结构运用」、「二叉树」、「哈希表」、「排序」、「优先队列(堆)」、「DFS」
66

77

88

9-
给你二叉树的根结点 root ,请你设计算法计算二叉树的 垂序遍历 序列。
9+
给你二叉树的根结点 `root` ,请你设计算法计算二叉树的 垂序遍历 序列。
1010

11-
对位于 (row, col) 的每个结点而言,其左右子结点分别位于 (row + 1, col - 1) 和 (row + 1, col + 1) 。树的根结点位于 (0, 0) 。
11+
对位于 $(row, col)$ 的每个结点而言,其左右子结点分别位于 $(row + 1, col - 1)$ 和 $(row + 1, col + 1)$ 。树的根结点位于 $(0, 0)$
1212

1313
二叉树的 垂序遍历 从最左边的列开始直到最右边的列结束,按列索引每一列上的所有结点,形成一个按出现位置从上到下排序的有序列表。如果同行同列上有多个结点,则按结点的值从小到大进行排序。
1414

@@ -59,7 +59,7 @@ Tag : 「数据结构运用」、「二叉树」、「哈希表」、「排序
5959
```
6060

6161
提示:
62-
* 树中结点数目总数在范围 [1, 10]
62+
* 树中结点数目总数在范围 $[1, 10]$
6363

6464
---
6565

LeetCode/面试题/面试题 17.14. 最小K个数(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
这是 LeetCode 上的 **[面试题 17.14. 最小K个数](https://leetcode-cn.com/problems/smallest-k-lcci/solution/gong-shui-san-xie-yi-ti-si-jie-you-xian-yy5k5/)** ,难度为 **中等**
44

5-
Tag : 「优先队列」、「优先队列(堆)」、「排序」
5+
Tag : 「优先队列(堆)」、「排序」
66

77

88

0 commit comments

Comments
 (0)