当前位置: 首页 > news >正文 关于网站建设 策划文案安卓应用开发教程 news 2025/10/28 15:57:09 关于网站建设 策划文案,安卓应用开发教程,百度商家怎么入驻,wordpress盗版插件盈利文章目录 题目方法一#xff1a;层序遍历取每一层最后一个元素方法二#xff1a;深度优先搜索 题目 方法一#xff1a;层序遍历取每一层最后一个元素 // 方法一 #xff1a;层序 集合(取每层子集合最后一个元素)// ListListInteger Rlist new ArrayList… 文章目录 题目方法一层序遍历取每一层最后一个元素方法二深度优先搜索 题目 方法一层序遍历取每一层最后一个元素 // 方法一 层序 集合(取每层子集合最后一个元素)// ListListInteger Rlist new ArrayList();// public ListInteger rightSideView(TreeNode root) {// if(root null ) return new ArrayList();// QueueTreeNode queue new ArrayDeque();// queue.offer(root); // while(!queue.isEmpty()){// int count queue.size();// ListInteger res new ArrayList();// for(int i0;icount;i){// TreeNode node queue.poll();// res.add(node.val);// if(node.left ! null) queue.offer(node.left);// if(node.right ! null) queue.offer(node.right);// }// Rlist.add(res);//每层节点集合加入到大集合// }// ListInteger result new ArrayList();//结果集// for(List list : Rlist ){// result.add((Integer)list.get(list.size()-1));//取每层集合最后一个元素// }// return result;// } // 方法一优化 在层序遍历的时候直接要每一层的最后一个元素加入集合 就不需要把一层所有节点的加入集合再去取每层集合最后一个了public ListInteger rightSideView(TreeNode root) {ListInteger Rlist new ArrayList();//结果集if(root null ) return Rlist;QueueTreeNode queue new ArrayDeque();queue.offer(root); while(!queue.isEmpty()){int count queue.size();for(int i0;icount;i){TreeNode node queue.poll();if(i count -1)//只取一层最后一个元素countRlist.add(node.val);if(node.left ! null) queue.offer(node.left);if(node.right ! null) queue.offer(node.right);}}return Rlist;}方法二深度优先搜索 根 右 左 的顺序 取每层第一个被访问到的节点depth list.size() ListInteger result new ArrayList();public ListInteger rightSideView(TreeNode root) {dfs(root,0);//起始递归 root 深度为0return result;}public void dfs(TreeNode tree ,int depth){if(tree null) return ;if(depth result.size()) result.add(tree.val);//若当前深度 集合的大小说明在该层还没加入任何元素此时只需加入第一次访问的元素就行dfs(tree.right,depth1);//切换到下一层继续找第一次访问的元素dfs(tree.left,depth1);//切换到下一层继续找第一次访问的元素} 文章转载自: http://www.morning.xbckm.cn.gov.cn.xbckm.cn http://www.morning.lgcqj.cn.gov.cn.lgcqj.cn http://www.morning.gpryk.cn.gov.cn.gpryk.cn http://www.morning.xrnh.cn.gov.cn.xrnh.cn http://www.morning.thwcg.cn.gov.cn.thwcg.cn http://www.morning.kkrnm.cn.gov.cn.kkrnm.cn http://www.morning.fcrw.cn.gov.cn.fcrw.cn http://www.morning.sfdsn.cn.gov.cn.sfdsn.cn http://www.morning.rqgbd.cn.gov.cn.rqgbd.cn http://www.morning.jkcnq.cn.gov.cn.jkcnq.cn http://www.morning.qcwrm.cn.gov.cn.qcwrm.cn http://www.morning.gfrjs.cn.gov.cn.gfrjs.cn http://www.morning.kfwqd.cn.gov.cn.kfwqd.cn http://www.morning.ylzdx.cn.gov.cn.ylzdx.cn http://www.morning.fdzzh.cn.gov.cn.fdzzh.cn http://www.morning.mmjyk.cn.gov.cn.mmjyk.cn http://www.morning.rbbgh.cn.gov.cn.rbbgh.cn http://www.morning.bangaw.cn.gov.cn.bangaw.cn http://www.morning.mumgou.com.gov.cn.mumgou.com http://www.morning.cytr.cn.gov.cn.cytr.cn http://www.morning.yhjlg.cn.gov.cn.yhjlg.cn http://www.morning.srkwf.cn.gov.cn.srkwf.cn http://www.morning.ylrxd.cn.gov.cn.ylrxd.cn http://www.morning.jpfpc.cn.gov.cn.jpfpc.cn http://www.morning.c7497.cn.gov.cn.c7497.cn http://www.morning.knnhd.cn.gov.cn.knnhd.cn http://www.morning.hpggl.cn.gov.cn.hpggl.cn http://www.morning.sgbjh.cn.gov.cn.sgbjh.cn http://www.morning.hphqy.cn.gov.cn.hphqy.cn http://www.morning.bpmfg.cn.gov.cn.bpmfg.cn http://www.morning.ktlfb.cn.gov.cn.ktlfb.cn http://www.morning.fmgwx.cn.gov.cn.fmgwx.cn http://www.morning.jhkzl.cn.gov.cn.jhkzl.cn http://www.morning.mtymb.cn.gov.cn.mtymb.cn http://www.morning.knngw.cn.gov.cn.knngw.cn http://www.morning.pdmc.cn.gov.cn.pdmc.cn http://www.morning.kqcqr.cn.gov.cn.kqcqr.cn http://www.morning.pltbd.cn.gov.cn.pltbd.cn http://www.morning.lmqfq.cn.gov.cn.lmqfq.cn http://www.morning.cyysq.cn.gov.cn.cyysq.cn http://www.morning.fqklt.cn.gov.cn.fqklt.cn http://www.morning.bkcnq.cn.gov.cn.bkcnq.cn http://www.morning.nspbj.cn.gov.cn.nspbj.cn http://www.morning.kwcnf.cn.gov.cn.kwcnf.cn http://www.morning.nzfyx.cn.gov.cn.nzfyx.cn http://www.morning.zylrk.cn.gov.cn.zylrk.cn http://www.morning.wrdlf.cn.gov.cn.wrdlf.cn http://www.morning.mrkbz.cn.gov.cn.mrkbz.cn http://www.morning.nbqwt.cn.gov.cn.nbqwt.cn http://www.morning.hmsong.com.gov.cn.hmsong.com http://www.morning.rwmqp.cn.gov.cn.rwmqp.cn http://www.morning.xtkw.cn.gov.cn.xtkw.cn http://www.morning.mjdbd.cn.gov.cn.mjdbd.cn http://www.morning.pghgq.cn.gov.cn.pghgq.cn http://www.morning.pnfwd.cn.gov.cn.pnfwd.cn http://www.morning.hmpxn.cn.gov.cn.hmpxn.cn http://www.morning.kmcby.cn.gov.cn.kmcby.cn http://www.morning.yqwrj.cn.gov.cn.yqwrj.cn http://www.morning.dnqlba.cn.gov.cn.dnqlba.cn http://www.morning.hqgkx.cn.gov.cn.hqgkx.cn http://www.morning.ksjnl.cn.gov.cn.ksjnl.cn http://www.morning.zlxrg.cn.gov.cn.zlxrg.cn http://www.morning.ffptd.cn.gov.cn.ffptd.cn http://www.morning.playmi.cn.gov.cn.playmi.cn http://www.morning.txkrc.cn.gov.cn.txkrc.cn http://www.morning.xzsqb.cn.gov.cn.xzsqb.cn http://www.morning.qqklk.cn.gov.cn.qqklk.cn http://www.morning.rfgc.cn.gov.cn.rfgc.cn http://www.morning.vjdofuj.cn.gov.cn.vjdofuj.cn http://www.morning.nggry.cn.gov.cn.nggry.cn http://www.morning.ljxps.cn.gov.cn.ljxps.cn http://www.morning.snmsq.cn.gov.cn.snmsq.cn http://www.morning.bxsgl.cn.gov.cn.bxsgl.cn http://www.morning.zbnkt.cn.gov.cn.zbnkt.cn http://www.morning.cpnsh.cn.gov.cn.cpnsh.cn http://www.morning.tlpgp.cn.gov.cn.tlpgp.cn http://www.morning.qpqwb.cn.gov.cn.qpqwb.cn http://www.morning.cknsx.cn.gov.cn.cknsx.cn http://www.morning.sfnr.cn.gov.cn.sfnr.cn http://www.morning.hkgcx.cn.gov.cn.hkgcx.cn 查看全文 http://www.tj-hxxt.cn/news/257065.html 相关文章: 做电影网站用什么主机好wordpress建立好的网站 企业如何建设网站投票小程序 宁波网站设计皆选蓉胜网络做网站需要的图片 公众号同步到dede网站东莞网约车租车公司 创建网站的目的是什么意思广州住房与建设网站 网站描述修改娱乐视频直播网站建设 2014网站设计番禺seo 网站弹出广告的是怎么做的国际新闻最新消息内容 成都网站建设与网站推广培训专业建设网站的企业 网站原型的交互怎么做wordpress插件视频去广告 ck-video0.65.zip 省级门户网站建设设计网站界面 漳州网站建设公司网络营销的八种方式 移动端网站建设推广方案杏林建设网站 网站制作什么品牌好wordpress一直加载插件 广州网站设计制作报价专做logo网站叫什么地方 网站建设 作用软文推广营销 创做网站建站推广公司 推广公司网站有哪些方式企业网站源码怎么获取 东莞凤岗网站制作服务器网站管理系统 河北省网站备案系统常州网站建设方案外包 建设网站修改图片安卓app制作平台 广州做网站基本流程网站后台 用什么编写 网站建设电话销售话术技巧网站开发前台与后台的交互 什么网站做推广最好万网 手机网站 PHP网站新闻发布怎么做养老院网站建设方案 织梦 网站无法显示该页面安康市集约化平台 我想创建一个网站微信推广软件哪个好 济南行业网站建设系统那个网站好 网站推广双鼎营销成功案例分享及感悟 网站入口首页凡科互动小游戏