• leetcode_341. 扁平化嵌套列表迭代器


    给你一个嵌套的整型列表。请你设计一个迭代器,使其能够遍历这个整型列表中的所有整数。
    
    列表中的每一项或者为一个整数,或者是另一个列表。其中列表的元素也可能是整数或是其他列表。
    
     
    
    示例 1:
    
    输入: [[1,1],2,[1,1]]
    输出: [1,1,2,1,1]
    解释: 通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,1,2,1,1]。
    示例 2:
    
    输入: [1,[4,[6]]]
    输出: [1,4,6]
    解释: 通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,4,6]。
    
    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/flatten-nested-list-iterator
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
    
    # """
    # This is the interface that allows for creating nested lists.
    # You should not implement it, or speculate about its implementation
    # """
    #class NestedInteger:
    #    def isInteger(self) -> bool:
    #        """
    #        @return True if this NestedInteger holds a single integer, rather than a nested list.
    #        """
    #
    #    def getInteger(self) -> int:
    #        """
    #        @return the single integer that this NestedInteger holds, if it holds a single integer
    #        Return None if this NestedInteger holds a nested list
    #        """
    #
    #    def getList(self) -> [NestedInteger]:
    #        """
    #        @return the nested list that this NestedInteger holds, if it holds a nested list
    #        Return None if this NestedInteger holds a single integer
    #        """
    
    class NestedIterator:
        def __init__(self, nestedList: [NestedInteger]):
            self.ls=[]
            def getls(nestedList:[NestedInteger]):
               for x in nestedList:
                    if x.isInteger():#如果是整数
                       self.ls.append(x.getInteger())
                    else:#是列表,递归
                        getls(x.getList())
    
            getls(nestedList)
    
            
        
        def next(self) -> int:
            return self.ls.pop(0)
            
        
        def hasNext(self) -> bool:
            return len(self.ls)
            
             
    
    # Your NestedIterator object will be instantiated and called as such:
    # i, v = NestedIterator(nestedList), []
    # while i.hasNext(): v.append(i.next())
    
  • 相关阅读:
    Message高级特性 & 内嵌Jetty实现文件服务器
    springboot中使用kindeditor富文本编辑器实现博客功能&vue-elementui使用vue-kindeditor
    Embarcadero RAD Studio XE5
    经典营销故事
    百度竞价教程 借助百度热力图让你的效果翻10倍
    无本借力:他是如何实现年收入70万?
    不用软件快速拥有几百个QQ群并都是管理员
    质保、保修、包修:含义不同
    域名反向解析在自建邮件群发服务器中的应用
    2014年1月1日,马年
  • 原文地址:https://www.cnblogs.com/hqzxwm/p/14102744.html
Copyright © 2020-2023  润新知