We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37836e3 commit 1cac4b2Copy full SHA for 1cac4b2
docs/.vitepress/config.mts
@@ -2,6 +2,7 @@ import { defineConfig } from "vitepress";
2
3
export default defineConfig({
4
title: "advanced-java",
5
+ ignoreDeadLinks: true,
6
themeConfig: {
7
search: {
8
provider: 'local'
docs/big-data/find-mid-value-in-500-millions.md
@@ -53,7 +53,7 @@ class MedianFinder {
53
}
54
```
55
56
-> 见 LeetCode No.295:https://leetcode.com/problems/find-median-from-data-stream/
+> 见 [LeetCode No.295](https://leetcode.com/problems/find-median-from-data-stream/)
57
58
以上这种方法,需要把所有数据都加载到内存中。当数据量很大时,就不能这样了,因此,这种方法**适用于数据量较小的情况**。5 亿个数,每个数字占用 4B,总共需要 2G 内存。如果可用内存不足 2G,就不能使用这种方法了,下面介绍另一种方法。
59
docs/extra-page/cover.md
0 commit comments