Skip to content

Commit 84690e4

Browse files
committed
二刷295
1 parent b5156c8 commit 84690e4

File tree

4 files changed

+54
-9
lines changed

4 files changed

+54
-9
lines changed

docs/0295-find-median-from-data-stream.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ include::{sourcedir}/_0295_FindMedianFromDataStream.java[tag=answer]
8181
----
8282
--
8383
84-
// 二刷::
85-
// +
86-
// --
87-
// [{java_src_attr}]
88-
// ----
89-
// include::{sourcedir}/_0005_LongestPalindromicSubstring_2.java[tag=answer]
90-
// ----
91-
// --
84+
二刷::
85+
+
86+
--
87+
[{java_src_attr}]
88+
----
89+
include::{sourcedir}/_0295_FindMedianFromDataStream_2.java[tag=answer]
90+
----
91+
--
9292
====
9393

9494
== 参考资料

logbook/202406.adoc

+5
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,11 @@
737737
|{doc_base_url}/0138-copy-list-with-random-pointer.adoc[题解]
738738
|✅ 哈希或者链表新旧交替相连
739739

740+
|{counter:codes}
741+
|{leetcode_base_url}/find-median-from-data-stream/[295. Find Median from Data Stream^]
742+
|{doc_base_url}/0295-find-median-from-data-stream.adoc[题解]
743+
|⭕️ 两个优先队列的解法真妙!
744+
740745
|===
741746

742747
截止目前,本轮练习一共完成 {codes} 道题。

src/main/java/com/diguage/algo/leetcode/_0295_FindMedianFromDataStream.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ public void addNum(int num) {
3333
}
3434

3535
public double findMedian() {
36-
return topSmall.size() != topLarge.size() ? topSmall.peek() : (topSmall.peek() + topLarge.peek()) / 2.0;
36+
return topSmall.size() != topLarge.size() ?
37+
topSmall.peek() : (topSmall.peek() + topLarge.peek()) / 2.0;
3738
}
3839
}
3940
// end::answer[]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package com.diguage.algo.leetcode;
2+
3+
import java.util.PriorityQueue;
4+
import java.util.Queue;
5+
6+
public class _0295_FindMedianFromDataStream_2 {
7+
// tag::answer[]
8+
/**
9+
* @author D瓜哥 · https://www.diguage.com
10+
* @since 2024-09-19 16:37:23
11+
*/
12+
class MedianFinder {
13+
Queue<Integer> topSmall;
14+
Queue<Integer> topLarge;
15+
16+
public MedianFinder() {
17+
// 小顶堆,顶部是最小的。保存较大的一半
18+
topSmall = new PriorityQueue<>();
19+
// 大顶堆,顶部是最大的。保存较小的一半
20+
topLarge = new PriorityQueue<>((a, b) -> Integer.compare(b, a));
21+
}
22+
23+
public void addNum(int num) {
24+
if (topSmall.size() != topLarge.size()) {
25+
topSmall.offer(num);
26+
topLarge.offer(topSmall.poll());
27+
} else {
28+
topLarge.offer(num);
29+
topSmall.offer(topLarge.poll());
30+
}
31+
}
32+
33+
public double findMedian() {
34+
return topSmall.size() == topLarge.size() ?
35+
(topSmall.peek() + topLarge.peek()) / 2.0 : topSmall.peek();
36+
}
37+
}
38+
// end::answer[]
39+
}

0 commit comments

Comments
 (0)