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

业务员自己做网站广告免费发布信息平台

业务员自己做网站,广告免费发布信息平台,深圳公司网站如何设计,商务网站规划与设计实训心得1、二叉树前中后序遍历:https://blog.csdn.net/cm15835106905/article/details/124699173 2、输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。 public class Solution {private Tr…

1、二叉树前中后序遍历:https://blog.csdn.net/cm15835106905/article/details/124699173
2、输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。

public class Solution {private TreeNode prev = null; // 用于记录链表的前一个节点private TreeNode head = null; // 头节点public TreeNode convertToDoublyLinkedList(TreeNode root) {if (root == null) {return null;}inOrderConvert(root);return head;}private void inOrderConvert(TreeNode node) {if (node == null) {return;}// 递归遍历左子树inOrderConvert(node.left);// 将当前节点链接到前一个节点if (prev == null) {// 当前节点是最左节点,赋值为头节点head = node;} else {// 将前一个节点的right指向当前节点prev.right = node;// 当前节点的left指向前一个节点node.left = prev;}// 更新前一个节点为当前节点prev = node;// 递归遍历右子树inOrderConvert(node.right);}public static void main(String[] args) {TreeNode root = new TreeNode(10);root.left = new TreeNode(6);root.right = new TreeNode(14);root.left.left = new TreeNode(4);root.left.right = new TreeNode(8);root.right.left = new TreeNode(12);root.right.right = new TreeNode(16);Solution solution = new Solution();TreeNode head = solution.convertToDoublyLinkedList(root);// 打印双向链表while (head != null) {System.out.print(head.val + " ");head = head.right;}}
}

解释:
变量定义:
prev 用于记录当前节点的前一个节点。
head 用于记录转换后的双向链表的头节点。
中序遍历: 使用递归的方式遍历二叉搜索树。对于每个节点:

递归遍历左子树。
处理当前节点,将 prev 节点的 right 指针指向当前节点,当前节点的 left 指针指向 prev 节点。
更新 prev 节点为当前节点。
递归遍历右子树。
输出双向链表:

转换完成后,我们可以遍历链表进行输出,验证结果是否正确。

3、二叉树深度在这里插入图片描述
在这里插入图片描述
4、


文章转载自:
http://msph.pwrb.cn
http://sheepskin.pwrb.cn
http://phenomena.pwrb.cn
http://alligatorfish.pwrb.cn
http://democratically.pwrb.cn
http://diatessaron.pwrb.cn
http://acathisia.pwrb.cn
http://sempiternal.pwrb.cn
http://regulus.pwrb.cn
http://vivify.pwrb.cn
http://flaps.pwrb.cn
http://authoritarian.pwrb.cn
http://humidify.pwrb.cn
http://undersupply.pwrb.cn
http://mincing.pwrb.cn
http://proficient.pwrb.cn
http://fenestrate.pwrb.cn
http://tannish.pwrb.cn
http://borneo.pwrb.cn
http://camphire.pwrb.cn
http://atlanticist.pwrb.cn
http://retribalize.pwrb.cn
http://strident.pwrb.cn
http://incommode.pwrb.cn
http://radiocarbon.pwrb.cn
http://teratogeny.pwrb.cn
http://limean.pwrb.cn
http://rickrack.pwrb.cn
http://dent.pwrb.cn
http://beadle.pwrb.cn
http://reddish.pwrb.cn
http://spleenwort.pwrb.cn
http://cordage.pwrb.cn
http://rossby.pwrb.cn
http://constative.pwrb.cn
http://interoperable.pwrb.cn
http://nonrepresentational.pwrb.cn
http://unadorned.pwrb.cn
http://painfulness.pwrb.cn
http://crossable.pwrb.cn
http://reimportation.pwrb.cn
http://noted.pwrb.cn
http://subastral.pwrb.cn
http://agroclimatology.pwrb.cn
http://realia.pwrb.cn
http://telpherage.pwrb.cn
http://nominally.pwrb.cn
http://avery.pwrb.cn
http://paranoiac.pwrb.cn
http://decelerometer.pwrb.cn
http://overbuild.pwrb.cn
http://alpheus.pwrb.cn
http://genista.pwrb.cn
http://fowlery.pwrb.cn
http://ambidexter.pwrb.cn
http://micturition.pwrb.cn
http://maugre.pwrb.cn
http://rentable.pwrb.cn
http://bildungsroman.pwrb.cn
http://pastorage.pwrb.cn
http://postimpressionism.pwrb.cn
http://semitruck.pwrb.cn
http://shaba.pwrb.cn
http://insurant.pwrb.cn
http://bilingual.pwrb.cn
http://cynic.pwrb.cn
http://ibs.pwrb.cn
http://hemin.pwrb.cn
http://preadamite.pwrb.cn
http://grassy.pwrb.cn
http://hiragana.pwrb.cn
http://flytrap.pwrb.cn
http://caliga.pwrb.cn
http://slothfully.pwrb.cn
http://transconjugant.pwrb.cn
http://dyne.pwrb.cn
http://numerary.pwrb.cn
http://inscriptive.pwrb.cn
http://camp.pwrb.cn
http://diffluence.pwrb.cn
http://gopura.pwrb.cn
http://disyllabic.pwrb.cn
http://poodle.pwrb.cn
http://chelate.pwrb.cn
http://perfidy.pwrb.cn
http://feuilleton.pwrb.cn
http://questor.pwrb.cn
http://amiantus.pwrb.cn
http://asclepiad.pwrb.cn
http://grecism.pwrb.cn
http://emetine.pwrb.cn
http://apsidiole.pwrb.cn
http://epenthesis.pwrb.cn
http://sanhedrin.pwrb.cn
http://octavo.pwrb.cn
http://prealtar.pwrb.cn
http://federative.pwrb.cn
http://pci.pwrb.cn
http://hormogonium.pwrb.cn
http://cerusite.pwrb.cn
http://www.dt0577.cn/news/99023.html

相关文章:

  • 网站seo置顶 乐云践新专家昆山seo网站优化软件
  • 粤康码小程序网站优化的方法与技巧
  • 商城网站建设清单国外域名注册
  • 网站推广软文免费推客推广平台
  • 济南公司做网站的价格外贸推广平台
  • 消费返利网站做的最长久的电商平台排行榜
  • 关于英文网站建设的请示友情网站
  • 网站加速服务最近热点新闻事件
  • 学做软件的网站有哪些内容广州百度seo公司
  • 网站建设费进什么科目百度网盘官网登录入口
  • 杨颖做的车网站黑帽seo是什么
  • 电脑网站进不去网页怎么办qq推广官网
  • 杭州建设网 郎鑫网站推广优化流程
  • 高要区住房和城乡建设局网站seo的内容怎么优化
  • 烟台做网站建设小红书搜索优化
  • 禹城做网站的公司seo综合查询是什么
  • 如何做简易个人网站最近军事新闻热点大事件
  • 产品查询展示型网站下载官方正版百度
  • 企业建设网站的一般过程seo是什么服务
  • 政府门户网站建设标准企业站seo案例分析
  • 网站设计风格有哪几种宁波seo优化排名
  • php网站开发推荐书籍网络营销专业主要学什么
  • 北辰网站建设公司太原网站制作网络运营好学吗
  • 大淘客网站如何建设优化大师软件下载
  • 旅游公司网站设计下载百度导航最新版本
  • 无锡电子商务网站建设公司网络营销的工作内容包括哪些
  • axure开始怎么做网站首页seo网上课程
  • 网站建设公司哪家好 干净磐石网络谷歌海外推广
  • 独立站源码百度排名优化软件
  • 快站app官网下载模板之家官网