⭐算法OJ⭐数据流的中位数【最小堆】Find Median from Data Stream最小堆是一种特殊的完全二叉树数据结构。最小堆通常用数组实现,利用数组索引表示树结构:The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value, and the median is the mean of the two middle values.