LeetCode每日一题(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.

  • For example, for arr = [2,3,4], the median is 3.
  • For example, for arr = [2,3], the median is (2 + 3) / 2 = 2.5.

Implement the MedianFinder class:

  • MedianFinder() initializes the MedianFinder object.
  • void addNum(int num) adds the integer num from the data stream to the data structure.
  • double findMedian() returns the median of all elements so far. Answers within 10-5 of the actual answer will be accepted.

Example 1:

Input
["MedianFinder", "addNum", "addNum", "findMedian", "addNum", "findMedian"]
[[], [1], [2], [], [3], []]
Output
[null, null, null, 1.5, null, 2.0]

Explanation
MedianFinder medianFinder = new MedianFinder();
medianFinder.addNum(1);    // arr = [1]
medianFinder.addNum(2);    // arr = [1, 2]
medianFinder.findMedian(); // return 1.5 (i.e., (1 + 2) / 2)
medianFinder.addNum(3);    // arr[1, 2, 3]
medianFinder.findMedian(); // return 2.0

Constraints:

  • -105 <= num <= 105
  • There will be at least one element in the data structure before calling findMedian.
  • At most 5 * 104 calls will be made to addNum and findMedian.

Follow up:

  • If all integer numbers from the stream are in the range [0, 100], how would you optimize your solution?
  • If 99% of all integer numbers from the stream are in the range [0, 100], how would you optimize your solution?

这题你要是不考虑后面的附加内容,那它就可以简化成一个维护有序数组的问题。二分法找到合适的位置插入,插入的时候注意插入的位置是在目标元素之前还是在目标元素之后就可以了。

struct MedianFinder {
    list: Vec<i32>,
}

impl MedianFinder {
    fn new() -> Self {
        Self { list: Vec::new() }
    }

    fn binary_insert(&mut self, start: usize, end: usize, num: i32) {
        if start == end {
            if self.list[start] > num {
                self.list.insert(start, num);
            } else {
                self.list.insert(start + 1, num);
            }
            return;
        }
        let mid = start + (end - start) / 2;
        if self.list[mid] < num {
            self.binary_insert(mid + 1, end, num);
        } else if self.list[mid] > num {
            self.binary_insert(start, mid, num);
        } else {
            self.list.insert(mid + 1, num);
        }
    }

    fn add_num(&mut self, num: i32) {
        if self.list.is_empty() {
            self.list.push(num);
            return;
        }
        self.binary_insert(0, self.list.len() - 1, num)
    }

    fn find_median(&self) -> f64 {
        if self.list.is_empty() {
            return 0.0;
        }
        let mid_idx = (self.list.len() - 1) / 2;
        if self.list.len() % 2 == 0 {
            return (self.list[mid_idx] + self.list[mid_idx + 1]) as f64 / 2.0;
        } else {
            return self.list[mid_idx] as f64;
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值