码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode284

时间:2020-04-06 09:33:35      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:def   self   迭代   code   res   ext   next   tor   style   

 1 class PeekingIterator:
 2     def __init__(self, iterator):
 3         self.iterator = iterator
 4         self.head = iterator.next()
 5 
 6     def peek(self):
 7         return self.head
 8 
 9     def next(self):
10         res = self.head
11         self.head = self.iterator.next() if self.iterator.hasNext() else None
12         return res
13 
14     def hasNext(self):
15         return self.head != None

题目类型:设计题,实现迭代器相关功能。

leetcode284

标签:def   self   迭代   code   res   ext   next   tor   style   

原文地址:https://www.cnblogs.com/asenyang/p/12640488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!