返回介绍

solution / 2500-2599 / 2526.Find Consecutive Integers from a Data Stream / README

发布于 2024-06-17 01:03:04 字数 4386 浏览 0 评论 0 收藏 0

2526. 找到数据流中的连续整数

English Version

题目描述

给你一个整数数据流,请你实现一个数据结构,检查数据流中最后 k 个整数是否 等于 给定值 value 。

请你实现 DataStream 类:

  • DataStream(int value, int k) 用两个整数 value 和 k 初始化一个空的整数数据流。
  • boolean consec(int num) 将 num 添加到整数数据流。如果后 k 个整数都等于 value ,返回 true ,否则返回 false 。如果少于 k 个整数,条件不满足,所以也返回 false 。

 

示例 1:

输入:
["DataStream", "consec", "consec", "consec", "consec"]
[[4, 3], [4], [4], [4], [3]]
输出:
[null, false, false, true, false]

解释:
DataStream dataStream = new DataStream(4, 3); // value = 4, k = 3 
dataStream.consec(4); // 数据流中只有 1 个整数,所以返回 False 。
dataStream.consec(4); // 数据流中只有 2 个整数
            // 由于 2 小于 k ,返回 False 。
dataStream.consec(4); // 数据流最后 3 个整数都等于 value, 所以返回 True 。
dataStream.consec(3); // 最后 k 个整数分别是 [4,4,3] 。
            // 由于 3 不等于 value ,返回 False 。

 

提示:

  • 1 <= value, num <= 109
  • 1 <= k <= 105
  • 至多调用 consec 次数为 105 次。

解法

方法一:计数

维护一个计数器 $cnt$,记录当前连续整数为 value 的个数。

numvalue 相等时,$cnt$ 自增 1,否则 $cnt$ 重置为 0。然后判断 $cnt$ 是否大于等于 k 即可。

时间复杂度 $O(1)$,空间复杂度 $O(1)$。

class DataStream:
  def __init__(self, value: int, k: int):
    self.val, self.k = value, k
    self.cnt = 0

  def consec(self, num: int) -> bool:
    self.cnt = 0 if num != self.val else self.cnt + 1
    return self.cnt >= self.k


# Your DataStream object will be instantiated and called as such:
# obj = DataStream(value, k)
# param_1 = obj.consec(num)
class DataStream {
  private int cnt;
  private int val;
  private int k;

  public DataStream(int value, int k) {
    val = value;
    this.k = k;
  }

  public boolean consec(int num) {
    cnt = num == val ? cnt + 1 : 0;
    return cnt >= k;
  }
}

/**
 * Your DataStream object will be instantiated and called as such:
 * DataStream obj = new DataStream(value, k);
 * boolean param_1 = obj.consec(num);
 */
class DataStream {
public:
  DataStream(int value, int k) {
    val = value;
    this->k = k;
  }

  bool consec(int num) {
    cnt = num == val ? cnt + 1 : 0;
    return cnt >= k;
  }

private:
  int cnt = 0;
  int val, k;
};

/**
 * Your DataStream object will be instantiated and called as such:
 * DataStream* obj = new DataStream(value, k);
 * bool param_1 = obj->consec(num);
 */
type DataStream struct {
  val, k, cnt int
}

func Constructor(value int, k int) DataStream {
  return DataStream{value, k, 0}
}

func (this *DataStream) Consec(num int) bool {
  if num == this.val {
    this.cnt++
  } else {
    this.cnt = 0
  }
  return this.cnt >= this.k
}

/**
 * Your DataStream object will be instantiated and called as such:
 * obj := Constructor(value, k);
 * param_1 := obj.Consec(num);
 */
class DataStream {
  private val: number;
  private k: number;
  private cnt: number;

  constructor(value: number, k: number) {
    this.val = value;
    this.k = k;
    this.cnt = 0;
  }

  consec(num: number): boolean {
    this.cnt = this.val === num ? this.cnt + 1 : 0;
    return this.cnt >= this.k;
  }
}

/**
 * Your DataStream object will be instantiated and called as such:
 * var obj = new DataStream(value, k)
 * var param_1 = obj.consec(num)
 */

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文