281. Zigzag Iterator (solution 1)

复制代码
package LeetCode_281

import java.util.*

/**
 * 281. Zigzag Iterator
 * (Prime)
 * Given two 1d vectors, implement an iterator to return their elements alternately.
Example:
Input:
v1 = [1,2]
v2 = [3,4,5,6]
Output: [1,3,2,4,5,6]
Explanation: By calling next repeatedly until hasNext returns false,
the order of elements returned by next should be: [1,3,2,4,5,6].

Follow up: What if you are given k 1d vectors? How well can your code be extended to such cases?

Clarification for the follow up question:
The "Zigzag" order is not clearly defined and is ambiguous for k > 2 cases.
If "Zigzag" does not look right to you, replace "Zigzag" with "Cyclic".
For example:
Input:
[1,2,3]
[4,5,6,7]
[8,9]
Output: [1,4,8,2,5,9,3,6,7].
 * */
/*
* solution 1: merge two array, Time complexity:O(n1+n2), Space complexity:O(n1+n2)
* */
class ZigzagIterator(v1: List<Int>?, v2: List<Int>?) {

    val list = ArrayList<Int>()
    var index = 0

    init {
        val n1 = v1?.size ?: 0
        val n2 = v2?.size ?: 0
        val n = Math.max(n1, n2)
        for (i in 0 until n) {
            if (i < n1 && v1 != null) {
                list.add(v1[i])
            }
            if (i < n2 && v2 != null) {
                list.add(v2[i])
            }
        }
    }

    fun next(): Int {
        return list.get(index++)
    }

    fun hasNext(): Boolean {
        return index < list.size
    }
}
复制代码

 

posted @   johnny_zhao  阅读(140)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示