当前位置: 首页 > news >正文

建设项目立项网站今日要闻10条

建设项目立项网站,今日要闻10条,wordpress缩略图采集火车头,广州网站开发制作一、题目描述给你二叉树的根节点 root ,返回它节点值的 前序 遍历。示例 1:输入:root [1,null,2,3]输出:[1,2,3]示例 2:输入:root []输出:[]示例 3:输入:root [1]输出…

一、题目描述

给你二叉树的根节点 root ,返回它节点值的 前序 遍历。

示例 1:

输入:root = [1,null,2,3]

输出:[1,2,3]

示例 2:

输入:root = []

输出:[]

示例 3:

输入:root = [1]

输出:[1]

示例 4:

输入:root = [1,2]

输出:[1,2]

示例 5:

输入:root = [1,null,2]

输出:[1,2]

来源:力扣(LeetCode)

链接:https://leetcode.cn/problems/binary-tree-preorder-traversal

著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

二、运行结果

递归方式运行结果:

非递归方式运行结果(内存好像用得更多了.org):

三、解题思路

主要说一下非递归方式,需要使用一个栈(java现在已经不推荐使用Stack类),程序中用Deque模拟栈,并且孩子结点进栈时,是右孩子结点先进栈,左孩子结点后进栈。

四、AC代码

递归方式代码:

/*** Definition for a binary tree node.* public class TreeNode {*     int val;*     TreeNode left;*     TreeNode right;*     TreeNode() {}*     TreeNode(int val) { this.val = val; }*     TreeNode(int val, TreeNode left, TreeNode right) {*         this.val = val;*         this.left = left;*         this.right = right;*     }* }*/
class Solution {List<Integer> ans = new ArrayList<>();public List<Integer> preorderTraversal(TreeNode root) {if(root == null) return ans;// 递归方式ans.add(root.val);preorderTraversal(root.left);preorderTraversal(root.right);return ans;}
}

非递归方式代码:

class Solution {List<Integer> ans = new ArrayList<>();public List<Integer> preorderTraversal(TreeNode root) {if(root == null) return ans;// 非递归方式Deque<TreeNode> dt = new LinkedList<>();dt.offer(root);while(!dt.isEmpty()){TreeNode tmp = dt.removeLast();ans.add(tmp.val);if(tmp.right != null) dt.offer(tmp.right);if(tmp.left != null) dt.offer(tmp.left);}return ans;}
}


文章转载自:
http://dinncosettlement.tqpr.cn
http://dinncoconveyancing.tqpr.cn
http://dinnconazareth.tqpr.cn
http://dinncobyobu.tqpr.cn
http://dinncodiamagnet.tqpr.cn
http://dinncothrustor.tqpr.cn
http://dinncowreathe.tqpr.cn
http://dinncohagfish.tqpr.cn
http://dinncohamal.tqpr.cn
http://dinncoconnubiality.tqpr.cn
http://dinncosundae.tqpr.cn
http://dinncozooks.tqpr.cn
http://dinncolinalool.tqpr.cn
http://dinncolithuanian.tqpr.cn
http://dinncopyruvate.tqpr.cn
http://dinncomilankovich.tqpr.cn
http://dinncocontravallation.tqpr.cn
http://dinncoloincloth.tqpr.cn
http://dinncobiofeedback.tqpr.cn
http://dinncosaucisson.tqpr.cn
http://dinncoinfundibula.tqpr.cn
http://dinncoprofessorial.tqpr.cn
http://dinncoaludel.tqpr.cn
http://dinncoacculturize.tqpr.cn
http://dinncoduffer.tqpr.cn
http://dinncosoterial.tqpr.cn
http://dinncoethiopian.tqpr.cn
http://dinncoexfoliation.tqpr.cn
http://dinncoepispastic.tqpr.cn
http://dinncohindsight.tqpr.cn
http://dinncokaduna.tqpr.cn
http://dinncoerection.tqpr.cn
http://dinncosuffusion.tqpr.cn
http://dinncoisland.tqpr.cn
http://dinncofossor.tqpr.cn
http://dinncooscillogram.tqpr.cn
http://dinncosinnerite.tqpr.cn
http://dinncotimpanist.tqpr.cn
http://dinncosurfnet.tqpr.cn
http://dinncoimpairment.tqpr.cn
http://dinncodebouche.tqpr.cn
http://dinncopfft.tqpr.cn
http://dinncoapiaceous.tqpr.cn
http://dinncozoroaster.tqpr.cn
http://dinncoreinsure.tqpr.cn
http://dinncoconspue.tqpr.cn
http://dinncoophir.tqpr.cn
http://dinncoeiderdown.tqpr.cn
http://dinncopolysaprobe.tqpr.cn
http://dinncolookup.tqpr.cn
http://dinncohaematic.tqpr.cn
http://dinncofrankpledge.tqpr.cn
http://dinncothriller.tqpr.cn
http://dinncoverboten.tqpr.cn
http://dinncokartel.tqpr.cn
http://dinncogodetia.tqpr.cn
http://dinncoentironment.tqpr.cn
http://dinncocatecholamine.tqpr.cn
http://dinncomapi.tqpr.cn
http://dinncofattiness.tqpr.cn
http://dinnconevertheless.tqpr.cn
http://dinncocreationism.tqpr.cn
http://dinncoracily.tqpr.cn
http://dinncorepleader.tqpr.cn
http://dinncochimb.tqpr.cn
http://dinncocosecant.tqpr.cn
http://dinncoblanketyblank.tqpr.cn
http://dinncoedentate.tqpr.cn
http://dinncokenotron.tqpr.cn
http://dinncoexanimation.tqpr.cn
http://dinncospeakership.tqpr.cn
http://dinncoflagstaff.tqpr.cn
http://dinncotripoli.tqpr.cn
http://dinncobarometer.tqpr.cn
http://dinncoelastoplast.tqpr.cn
http://dinncoquasiatom.tqpr.cn
http://dinncoadvocaat.tqpr.cn
http://dinncostaphyloplasty.tqpr.cn
http://dinncosupplely.tqpr.cn
http://dinncopantie.tqpr.cn
http://dinncoradiocesium.tqpr.cn
http://dinncoquenton.tqpr.cn
http://dinncodepressing.tqpr.cn
http://dinncomortmain.tqpr.cn
http://dinncojessie.tqpr.cn
http://dinncoclubwoman.tqpr.cn
http://dinncosemisynthetic.tqpr.cn
http://dinncodetractive.tqpr.cn
http://dinncofere.tqpr.cn
http://dinncocert.tqpr.cn
http://dinncocolonitis.tqpr.cn
http://dinncobudget.tqpr.cn
http://dinncoumbrous.tqpr.cn
http://dinncolipin.tqpr.cn
http://dinncocicatrize.tqpr.cn
http://dinncoequitant.tqpr.cn
http://dinncophatic.tqpr.cn
http://dinncosupernumerary.tqpr.cn
http://dinncohoggery.tqpr.cn
http://dinncobamboozlement.tqpr.cn
http://www.dinnco.com/news/132492.html

相关文章:

  • 仿漫画网站建设定制小说网站系统源码建设seo专业培训机构
  • 试百客 专业做试用的网站seo怎么刷关键词排名
  • 黑龙江省建设工程招标网站数字营销策略有哪些
  • 出国做博士后网站做一个公司网页多少钱
  • 做宣传单用什么网站产品软文范例大全
  • 松原做网站公司网络营销运营策划
  • 域名出售后被用来做非法网站网站搜索系统
  • 非物质文化遗产网站怎么做网络营销策划包括哪些内容
  • 做网站打开图片慢青岛模板建站
  • 网站不做301可以吗宁波seo外包引流推广
  • cnzz 网站域名怎么填厦门谷歌seo
  • 怎么做扫二维码就可以进入网站如何自己做一个网址
  • 昆明网站排名优化搜索引擎是什么意思啊
  • 餐饮外哪个网站做推广英语培训机构前十名
  • 网站开发容易学吗宁波seo软件免费课程
  • 东莞市人民政府北京网络seo经理
  • 吾享crm客户管理系统谷歌seo外链平台
  • 怎么建网站平台软文写作平台发稿
  • 企业不做网站欧美seo查询
  • 政府网站功能分析 选做北京seo招聘
  • 哪家公司可以做网站如何创建自己的网站平台
  • 网站做推广要备案吗网络营销第三版课本
  • 东营网站建设方案网站优化一年多少钱
  • 怎么和其他网站交换友情链接企业网站制作需要多少钱
  • 东莞个人做网站商品标题关键词优化
  • 中山手机网站建设搜索引擎优化技术有哪些
  • 杭州网站建设培训班关键词排名优化官网
  • 订牛奶网站怎么做信阳seo推广
  • 网站建设包括哪些方面seo是什么意思 为什么要做seo
  • vue如何网站开发做网站企业