当前位置: 首页 > news >正文 凡科建站源码南宁seo排名优化 news 2025/11/4 16:45:07 凡科建站源码,南宁seo排名优化,安装wordpress要数据库吗,做侵权网站用哪里的服务器一、说明 迭代器模式是一种行为设计模式#xff0c;让你能在不暴露集合底层表现形式#xff08;列表、栈和树等#xff09;的情况下遍历集合中所有的元素。 (一) 解决问题 遍历聚合对象中的元素#xff0c;而不需要暴露该对象的内部表示 (二) 使用场景 需要对聚合对象… 一、说明 迭代器模式是一种行为设计模式让你能在不暴露集合底层表现形式列表、栈和树等的情况下遍历集合中所有的元素。 (一) 解决问题 遍历聚合对象中的元素而不需要暴露该对象的内部表示 (二) 使用场景 需要对聚合对象中元素进行遍历并且不想暴露其内部结构减少程序中重复的遍历代码时能够遍历不同的甚至是无法预知的数据结构时 二、结构 迭代器Iterator接口声明了遍历集合所需的操作获取下一个元素、获取当前位置和重新开始迭代等。具体迭代器ConcreteIterators实现遍历集合的一种特定算法。迭代器对象必须跟踪自身遍历的进度。这使得多个迭代器可以相互独立地遍历同一集合。集合Collection接口声明一个或多个方法来获取与集合兼容的迭代器。请注意返回方法的类型必须被声明为迭代器接口因此具体集合可以返回各种不同种类的迭代器。具体集合ConcreteCollections会在客户端请求迭代器时返回一个特定的具体迭代器类实体。你可能会琢磨剩下的集合代码在什么地方呢不用担心它也会在同一个类中。只是这些细节对于实际模式来说并不重要所以我们将其省略了而已。客户端Client通过集合和迭代器的接口与两者进行交互。这样一来客户端无需与具体类进行耦合允许同一客户端代码使用各种不同的集合和迭代器。客户端通常不会自行创建迭代器而是会从集合中获取。但在特定情况下客户端可以直接创建一个迭代器例如当客户端需要自定义特殊迭代器时。 三、伪代码 #!/usr/bin/env python # -*- coding: UTF-8 -*- __doc__ 迭代器模式例迭代树结构对象 from collections.abc import Iterable, Iteratorclass TreeNode:树节点类def __init__(self, value):self.value valueself.children []def add_child(self, child):self.children.append(child)def __str__(self, level0):indent * levelresult f{indent}{self.value}\nfor child in self.children:result child.__str__(level 4)return resultclass Tree(Iterable):聚合对象def __init__(self, root):self.root rootdef __iter__(self) - Iterator:return TreeIterator(self.root)class TreeIterator(Iterator):迭代器def __init__(self, node):self.stack [node]def __next__(self):if not self.stack:raise StopIterationnode self.stack.pop()self.stack.extend(reversed(node.children))return node.valueif __name__ __main__:ABDECF# 构建树形结构root TreeNode(A)b TreeNode(B)c TreeNode(C)d TreeNode(D)e TreeNode(E)f TreeNode(F)root.add_child(b)root.add_child(c)b.add_child(d)b.add_child(e)c.add_child(f)# 遍历树形结构tree Tree(root)for value in tree:print(value)四、优缺点 优点 简化了聚合对象的接口迭代器模式将遍历集合元素的责任分离出来使得聚合对象和迭代器对象的职责更加清晰聚合对象只需提供迭代器而无需关注遍历逻辑。隐藏了集合的内部结构迭代器模式封装了集合的内部实现细节使得客户端可以透明地访问集合元素而不必关心集合的具体实现方式。 缺点 不适合过于简单的集合对于结构简单、元素数量少的集合不如直接遍历集合来得简单直接。 【Python笔记】设计模式-CSDN博客 文章转载自: http://www.morning.frfpx.cn.gov.cn.frfpx.cn http://www.morning.fbxlj.cn.gov.cn.fbxlj.cn http://www.morning.brsgw.cn.gov.cn.brsgw.cn http://www.morning.jyyw.cn.gov.cn.jyyw.cn http://www.morning.kfcfq.cn.gov.cn.kfcfq.cn http://www.morning.liyixun.com.gov.cn.liyixun.com http://www.morning.fjntg.cn.gov.cn.fjntg.cn http://www.morning.gwsfq.cn.gov.cn.gwsfq.cn http://www.morning.ypbdr.cn.gov.cn.ypbdr.cn http://www.morning.rzdpd.cn.gov.cn.rzdpd.cn http://www.morning.hnhgb.cn.gov.cn.hnhgb.cn http://www.morning.mdnnz.cn.gov.cn.mdnnz.cn http://www.morning.yodajy.cn.gov.cn.yodajy.cn http://www.morning.xxiobql.cn.gov.cn.xxiobql.cn http://www.morning.ywqw.cn.gov.cn.ywqw.cn http://www.morning.tmxtr.cn.gov.cn.tmxtr.cn http://www.morning.pzdxg.cn.gov.cn.pzdxg.cn http://www.morning.pmrlt.cn.gov.cn.pmrlt.cn http://www.morning.njftk.cn.gov.cn.njftk.cn http://www.morning.fnmgr.cn.gov.cn.fnmgr.cn http://www.morning.ysdwq.cn.gov.cn.ysdwq.cn http://www.morning.nlnmy.cn.gov.cn.nlnmy.cn http://www.morning.dfhkh.cn.gov.cn.dfhkh.cn http://www.morning.gsyns.cn.gov.cn.gsyns.cn http://www.morning.xnqwk.cn.gov.cn.xnqwk.cn http://www.morning.ampingdu.com.gov.cn.ampingdu.com http://www.morning.yltyr.cn.gov.cn.yltyr.cn http://www.morning.hyjpl.cn.gov.cn.hyjpl.cn http://www.morning.cdrzw.cn.gov.cn.cdrzw.cn http://www.morning.fppzc.cn.gov.cn.fppzc.cn http://www.morning.tbrnl.cn.gov.cn.tbrnl.cn http://www.morning.ktlxk.cn.gov.cn.ktlxk.cn http://www.morning.hgcz.cn.gov.cn.hgcz.cn http://www.morning.nnwmd.cn.gov.cn.nnwmd.cn http://www.morning.ybhrb.cn.gov.cn.ybhrb.cn http://www.morning.fpjw.cn.gov.cn.fpjw.cn http://www.morning.ncrk.cn.gov.cn.ncrk.cn http://www.morning.lpcct.cn.gov.cn.lpcct.cn http://www.morning.nbhft.cn.gov.cn.nbhft.cn http://www.morning.yaqi6.com.gov.cn.yaqi6.com http://www.morning.tfzjl.cn.gov.cn.tfzjl.cn http://www.morning.znqxt.cn.gov.cn.znqxt.cn http://www.morning.kjrp.cn.gov.cn.kjrp.cn http://www.morning.lmjtp.cn.gov.cn.lmjtp.cn http://www.morning.cfnsn.cn.gov.cn.cfnsn.cn http://www.morning.nmngq.cn.gov.cn.nmngq.cn http://www.morning.qrwdg.cn.gov.cn.qrwdg.cn http://www.morning.rnwmp.cn.gov.cn.rnwmp.cn http://www.morning.bqrd.cn.gov.cn.bqrd.cn http://www.morning.rnxw.cn.gov.cn.rnxw.cn http://www.morning.xbptx.cn.gov.cn.xbptx.cn http://www.morning.mjxgs.cn.gov.cn.mjxgs.cn http://www.morning.qsmch.cn.gov.cn.qsmch.cn http://www.morning.kkdbz.cn.gov.cn.kkdbz.cn http://www.morning.litao7.cn.gov.cn.litao7.cn http://www.morning.hxljc.cn.gov.cn.hxljc.cn http://www.morning.jmspy.cn.gov.cn.jmspy.cn http://www.morning.ryxyz.cn.gov.cn.ryxyz.cn http://www.morning.wdnkp.cn.gov.cn.wdnkp.cn http://www.morning.qtxwb.cn.gov.cn.qtxwb.cn http://www.morning.ktblf.cn.gov.cn.ktblf.cn http://www.morning.rcqyk.cn.gov.cn.rcqyk.cn http://www.morning.cmzgt.cn.gov.cn.cmzgt.cn http://www.morning.nsfxt.cn.gov.cn.nsfxt.cn http://www.morning.rfkyb.cn.gov.cn.rfkyb.cn http://www.morning.mfmbn.cn.gov.cn.mfmbn.cn http://www.morning.bykqg.cn.gov.cn.bykqg.cn http://www.morning.hmlpn.cn.gov.cn.hmlpn.cn http://www.morning.sbpt.cn.gov.cn.sbpt.cn http://www.morning.fswml.cn.gov.cn.fswml.cn http://www.morning.wtlyr.cn.gov.cn.wtlyr.cn http://www.morning.rbgqn.cn.gov.cn.rbgqn.cn http://www.morning.nrydm.cn.gov.cn.nrydm.cn http://www.morning.rfxw.cn.gov.cn.rfxw.cn http://www.morning.jygsq.cn.gov.cn.jygsq.cn http://www.morning.qsmmq.cn.gov.cn.qsmmq.cn http://www.morning.qbtj.cn.gov.cn.qbtj.cn http://www.morning.gtbjc.cn.gov.cn.gtbjc.cn http://www.morning.wmfr.cn.gov.cn.wmfr.cn http://www.morning.pqnkg.cn.gov.cn.pqnkg.cn 查看全文 http://www.tj-hxxt.cn/news/277069.html 相关文章: 做外国订单有什么网站成都本地网站 能下短视频网站做牙北京优酷首页培训机构 宿迁专业网站三合一建设网页美工设计图片 简述网站设计基本流程深圳实惠的专业建站公司 苏州自助建站商场设计公司 电商 企业网站 福州文化建设实施方案 网站建设项目的预算网站开发语言为 常州哪些网站公司做的好丽江网站建设c3sales 邯郸住房和城乡建设局网站建设网站证书不受信任 什么网站可以做TCGA病理分期小程序开发一年多少钱 宁波网站建设与推广方案wordpress大 怎样进网站空间服务器wordpress 媒体路径 网站如何实现微信登录界面中山网站设计公司 没有公司做网站可以吗高端制造 郴州58网站杨浦专业做网站 汕头网站设计定制WordPress海报 直播网站建设需要什么品牌营销咨询公司 济南电子商务网站建设怎么安装百度 网站建设的利益生成图片 企业网站推广优化公司大型网站开发pdf 营销网站制作全包网站建设招标提问 做展馆好的设计网站什么网站做的比较好 php框架做网站的好处重庆制作网站怎么选 网站建设策划结构网络营销有哪些功能? 做网站要给ftp密码吗如何提高网站的点击量 创建网站大约design工业设计 做类似淘宝的网站前景网站推广的优点 菠菜网站建设条件简述网站制作过程 西部数码网站管理助手 mssql企业单位网站建设内容需要什么 如何做优酷网站赚钱做同行的旅游网站