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

绍兴网站建设设计百度网站关键词排名查询

绍兴网站建设设计,百度网站关键词排名查询,企业网站建设 安全,网页制作教案leetcode刷题 | 关于二叉树的题型总结3 文章目录leetcode刷题 | 关于二叉树的题型总结3题目连接递增顺序搜索树二叉搜索树中的中序后继把二叉搜索树转换为累加树二叉搜索树迭代器题目连接 897. 递增顺序搜索树 - 力扣(LeetCode) 剑指 Offer II 053. 二…

leetcode刷题 | 关于二叉树的题型总结3

文章目录

  • leetcode刷题 | 关于二叉树的题型总结3
    • 题目连接
    • 递增顺序搜索树
    • 二叉搜索树中的中序后继
    • 把二叉搜索树转换为累加树
    • 二叉搜索树迭代器

题目连接

897. 递增顺序搜索树 - 力扣(LeetCode)

剑指 Offer II 053. 二叉搜索树中的中序后继 - 力扣(LeetCode)

538. 把二叉搜索树转换为累加树 - 力扣(LeetCode)

173. 二叉搜索树迭代器 - 力扣(LeetCode)

递增顺序搜索树

二叉树本身是有序的,可以采用左中右的遍历顺序,使用一个prev节点保存前一个结点

class Solution {TreeNode prev = new TreeNode(-1);TreeNode node = prev;public TreeNode increasingBST(TreeNode root) {dfs(root);return node.right;}public void dfs(TreeNode root){if(root == null) return ;dfs(root.left);prev.right = root;root.left = null;prev = root;dfs(root.right);}
}

二叉搜索树中的中序后继

dfs+中序遍历

class Solution {TreeNode res = null;public TreeNode inorderSuccessor(TreeNode root, TreeNode p) {dfs(root,p);return res;}public TreeNode dfs(TreeNode root,TreeNode p){if(root == null) return null;if(root.val > p.val){res = root;return inorderSuccessor(root.left,p);}else return inorderSuccessor(root.right,p);}
}

使用二分查找到找到cur=p的节点,使用prev记录cur的root节点

然后判断cur节点是否有右子树,如果存在则返会右子树的最左边的节点

如果没有右子树那么直接返会prev,因为pre > cur = p

class Solution {   public TreeNode inorderSuccessor(TreeNode root, TreeNode p) {TreeNode cur = root;TreeNode prev = null;while(cur != p){if(cur.val > p.val){prev = cur;cur = cur.left;}else{cur = cur.right;}}  if(cur.right != null){cur = cur.right;while(cur.left != null){cur = cur.left;}return cur;}return prev;}
}

把二叉搜索树转换为累加树

class Solution {int sum = 0;public TreeNode convertBST(TreeNode root) {if(root == null) return null;convertBST(root.right);root.val += sum; //将当前节点值和大于当前节点值的和相加sum = root.val; convertBST(root.left);return root;}  
}

使用右中左逆序中序遍历的方式并使用栈来存放前一个节点

当cur=null时遍历到了叶子节点,dep.poll() 得到该节点的父节点,将cur = 该父节点

更新cur父节点的val值,题目要求值等于原树中大于或等于 node.val 的值之和,使用sum来保存和

因为使用右中左的遍历顺序,sum始终都是累加

class Solution {public TreeNode convertBST(TreeNode root) {int sum = 0;Deque<TreeNode> deq = new ArrayDeque();      TreeNode cur = root;while(!deq.isEmpty() || cur != null){if(cur != null){deq.push(cur);cur = cur.right;}else{cur = deq.poll();sum += cur.val;cur.val = sum;cur = cur.left;}}return root;}
}

二叉搜索树迭代器

先获得中序遍历结果,然后遍历

class BSTIterator {List<TreeNode> list = null;int index;int siez;public BSTIterator(TreeNode root) {list = new ArrayList<>();index = -1;dfs(root);this.siez = list.size();}public int next() {return list.get(++index).val;}public boolean hasNext() {if (index >= siez-1) return false;return true;}public void dfs(TreeNode root){if (root == null) return ;dfs(root.left);list.add(root);dfs(root.right);}
}

使用栈存入全部的左子节点和根节点

class BSTIterator {Deque<TreeNode> deq = new ArrayDeque<>();public BSTIterator(TreeNode root) {TreeNode node  = root;while (node != null){deq.push(node);node = node.left;}}public int next() {TreeNode cur = deq.poll();if(cur.right != null){TreeNode node = cur.right;while(node != null){deq.push(node);node = node.left;//把所有的左节点都放入deq}}return cur.val;}public boolean hasNext() {return !deq.isEmpty();}
}
http://www.hrbkazy.com/news/31701.html

相关文章:

  • 綦江中国建设银行官网站网站seo置顶 乐云践新专家
  • 网站建设的钱计入什么科目灰色关键词快速排名
  • 做的网站速度慢临沂今日头条新闻最新
  • 佛山做网站优化什么是seo搜索
  • 鲁谷网站建设seo网站关键词排名优化公司
  • 做网站收入怎么样下载百度
  • 猴王水果竞猜网站建设营业推广案例
  • 做定制网站百度提交
  • 潍坊大型做网站建设的公司和生活app下载安装最新版
  • 建设公司网站多少钱揭阳百度seo公司
  • 网站替换图片怎么做青岛官网seo
  • 三亚旅游seo排名关键词
  • 专业网站建设专家智能优化网站
  • 常州营销型网站建设google浏览器官网
  • 外贸建站用什么服务器怎么自己创建一个网站
  • sinaappengine wordpress网站seo优化免费
  • 那些网站被k恢复是怎么做的百度金融
  • 虞城做网站考研培训机构排名
  • 地推app接任务平台宁波seo排名优化哪家好
  • 怎么做公众号网站网络游戏推广员是做什么的
  • wordpress小图标网站百度新闻头条
  • 公司营业执照可以做几个网站长沙网站推广工具
  • 贷款网站模板天津百度搜索排名优化
  • 嘉兴服饰网站建设百度网址大全旧版本
  • 团购网站模板 免费媒体发稿网
  • 网站做系统下载十八大禁用黄app入口
  • 常州建设局官方网站常州seo博客
  • 垫江网站建设百度文库登录入口
  • 杭州有哪些做网站的公司好今日热点新闻事件摘抄50字
  • 什么网站做首页企业文化ppt