• 算法leetcode|1656. 设计有序流(rust和go重拳出击)




    1656. 设计有序流:

    n(id, value) 对,其中 id1n 之间的一个整数,value 是一个字符串。不存在 id 相同的两个 (id, value) 对。

    设计一个流,以 任意 顺序获取 n(id, value) 对,并在多次调用时 id 递增的顺序 返回一些值。

    实现 OrderedStream 类:

    • OrderedStream(int n) 构造一个能接收 n 个值的流,并将当前指针 ptr 设为 1
    • String[] insert(int id, String value) 向流中存储新的 (id, value) 对。存储后:
      • 如果流存储有 id = ptr 的 (id, value) 对,则找出从 id = ptr 开始的 最长 id 连续递增序列 ,并 按顺序 返回与这些 id 关联的值的列表。然后,将 ptr 更新为最后那个 id + 1
      • 否则,返回一个空列表。

    样例 1:

    输入
    	["OrderedStream", "insert", "insert", "insert", "insert", "insert"]
    	[[5], [3, "ccccc"], [1, "aaaaa"], [2, "bbbbb"], [5, "eeeee"], [4, "ddddd"]]
    	
    输出
    	[null, [], ["aaaaa"], ["bbbbb", "ccccc"], [], ["ddddd", "eeeee"]]
    
    解释
    	OrderedStream os= new OrderedStream(5);
    	os.insert(3, "ccccc"); // 插入 (3, "ccccc"),返回 []
    	os.insert(1, "aaaaa"); // 插入 (1, "aaaaa"),返回 ["aaaaa"]
    	os.insert(2, "bbbbb"); // 插入 (2, "bbbbb"),返回 ["bbbbb", "ccccc"]
    	os.insert(5, "eeeee"); // 插入 (5, "eeeee"),返回 []
    	os.insert(4, "ddddd"); // 插入 (4, "ddddd"),返回 ["ddddd", "eeeee"]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    提示:

    • 1 <= n <= 1000
    • 1 <= id <= n
    • value.length == 5
    • value 仅由小写字母组成
    • 每次调用 insert 都会使用一个唯一的 id
    • 恰好调用 n 次 insert

    原题传送门:

    https://leetcode.cn/problems/design-an-ordered-stream/


    分析

    • 面对这道算法题目,二当家的陷入了沉思。
    • 好像照着题意做就行了,唯一要考虑的是value用什么结构去存储,数组刚刚好。

    题解

    rust

    struct OrderedStream {
        values: Vec<String>,
        ptr: usize,
    }
    
    
    /**
     * `&self` means the method takes an immutable reference.
     * If you need a mutable reference, change it to `&mut self` instead.
     */
    impl OrderedStream {
    
        fn new(n: i32) -> Self {
            OrderedStream {
                values: vec!["".to_string(); n as usize],
                ptr: 0,
            }
        }
    
        fn insert(&mut self, id_key: i32, value: String) -> Vec<String> {
            self.values[(id_key - 1) as usize] = value;
            let mut res = Vec::new();
            while self.ptr < self.values.len() && self.values[self.ptr] != "" {
                res.push(self.values[self.ptr].clone());
                self.ptr += 1;
            }
            res
        }
    }
    
    /**
     * Your OrderedStream object will be instantiated and called as such:
     * let obj = OrderedStream::new(n);
     * let ret_1: Vec = obj.insert(idKey, value);
     */
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    go

    type OrderedStream struct {
    	values []string
    	ptr    int
    }
    
    func Constructor(n int) OrderedStream {
    	return OrderedStream{
    		values: make([]string, n),
    		ptr:    0,
    	}
    }
    
    func (this *OrderedStream) Insert(idKey int, value string) []string {
    	this.values[idKey-1] = value
    	start := this.ptr
    	for this.ptr < len(this.values) && this.values[this.ptr] != "" {
    		this.ptr++
    	}
    	return this.values[start:this.ptr]
    }
    
    
    /**
     * Your OrderedStream object will be instantiated and called as such:
     * obj := Constructor(n);
     * param_1 := obj.Insert(idKey,value);
     */
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    c++

    class OrderedStream {
    private:
        vector<string> values;
        int ptr;
    public:
        OrderedStream(int n) {
            values.resize(n);
            ptr = 0;
        }
    
        vector<string> insert(int idKey, string value) {
            values[idKey - 1] = value;
            vector<string> res;
            while (ptr < values.size() && values[ptr] != "") {
                res.emplace_back(values[ptr]);
                ++ptr;
            }
            return res;
        }
    };
    
    /**
     * Your OrderedStream object will be instantiated and called as such:
     * OrderedStream* obj = new OrderedStream(n);
     * vector param_1 = obj->insert(idKey,value);
     */
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    java

    class OrderedStream {
        private final String[] values;
        private int ptr;
    
        public OrderedStream(int n) {
            values = new String[n];
            ptr = 0;
        }
    
        public List<String> insert(int idKey, String value) {
            values[idKey - 1] = value;
            List<String> res = new ArrayList<>();
            while (ptr < values.length && values[ptr] != null) {
                res.add(values[ptr]);
                ++ptr;
            }
            return res;
        }
    }
    
    /**
     * Your OrderedStream object will be instantiated and called as such:
     * OrderedStream obj = new OrderedStream(n);
     * List param_1 = obj.insert(idKey,value);
     */
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    python

    class OrderedStream:
    
        def __init__(self, n: int):
            self.values = [""] * n
            self.ptr = 0
    
        def insert(self, idKey: int, value: str) -> List[str]:
            self.values[idKey - 1] = value
            res = []
            while self.ptr < len(self.values) and self.values[self.ptr]:
                res.append(self.values[self.ptr])
                self.ptr += 1
            return res
    
    
    # Your OrderedStream object will be instantiated and called as such:
    # obj = OrderedStream(n)
    # param_1 = obj.insert(idKey,value)
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    非常感谢你阅读本文~
    欢迎【点赞】【收藏】【评论】~
    放弃不难,但坚持一定很酷~
    希望我们大家都能每天进步一点点~
    本文由 二当家的白帽子:https://le-yi.blog.csdn.net/ 博客原创~


  • 相关阅读:
    如何利用 Flutter 实现炫酷的 3D 卡片和帅气的 360° 展示效果
    【数据结构与算法】之多指针算法经典问题
    点云从入门到精通技术详解100篇-基于点云数据的钢板表面三维缺陷检测(续)
    牛血清白蛋白-葡聚糖纳米颗粒包埋蛋清源活性肽/葡聚糖共价接枝物的制备
    C# .NET 6 使用WorkFlow Core 创建工作审批流
    《深入浅出MySQL:数据库开发、优化与管理维护(第3版)》
    【人工智能 & 机器学习 & 深度学习】基础选择题 31~60题 练习(题目+答案),亦含 判断题
    SD-MTSP:萤火虫算法(FA)求解单仓库多旅行商问题MATLAB(可更改数据集,旅行商的数量和起点)
    android WebView显示不全问题
    Landsat 7的热红外波段有2个该如何选择?
  • 原文地址:https://blog.csdn.net/leyi520/article/details/126366092