博客
关于我
剑指offer--树--树中两个结点的最低公共祖先
阅读量:135 次
发布时间:2019-02-26

本文共 2510 字,大约阅读时间需要 8 分钟。

???????????????????????????????

  • ??????????????????????????????????????DFS???????
  • ??????????????????????????????????????????????
  • ??????????????

    import java.util.ArrayList;import java.util.Stack;public class Test2 {    public static void main(String[] args) {        // ????        TreeNode root = new TreeNode(6);        TreeNode left = new TreeNode(2);        left.left = new TreeNode(0);        left.right = new TreeNode(4);        left.right.left = new TreeNode(7);        left.right.right = new TreeNode(9);        root.left = left;        TreeNode right = new TreeNode(8);        right.left = new TreeNode(3);        right.left.right = new TreeNode(5);        root.right = right;        System.out.println(lowestCommonAncestorII(root, left, right));    }    public static TreeNode lowestCommonAncestorII(TreeNode root, TreeNode p, TreeNode q) {        List
    pPath = findPath(root, p); List
    qPath = findPath(root, q); // ??????????null if (pPath == null || qPath == null) { return null; } // ??????????????? int minLength = Math.min(pPath.size(), qPath.size()); TreeNode common = null; for (int i = 0; i < minLength; i++) { if (pPath.get(i) == qPath.get(i)) { common = pPath.get(i); } else { break; } } return common; } private static List
    findPath(TreeNode root, TreeNode target) { List
    path = new ArrayList<>(); Stack
    stack = new Stack<>(); stack.push(root); while (!stack.isEmpty()) { TreeNode node = stack.pop(); if (node == target) { // ????????????path? while (!stack.isEmpty()) { path.add(stack.pop()); } return path; } if (node.left != null) { stack.push(node.left); } if (node.right != null) { stack.push(node.right); } } return null; }}

    ????

  • findPath ???

    • ?????????????DFS?????????????????
    • ???????????????????????????????????
  • lowestCommonAncestorII ???

    • ?? findPath ??????????p?q????
    • ?????????????????????
    • ?????????????????????????????????????
  • ??????

    • main ???????????? lowestCommonAncestorII ???????????
    • lowestCommonAncestorII ?????????????????????????????
    • findPath ????????DFS?????????

    ????????????O(n)???????????????????????????????

    转载地址:http://tnzu.baihongyu.com/

    你可能感兴趣的文章
    nodejs与javascript中的aes加密
    查看>>
    nodejs中Express 路由统一设置缓存的小技巧
    查看>>
    nodejs中express的使用
    查看>>
    Nodejs中搭建一个静态Web服务器,通过读取文件获取响应类型
    查看>>
    Nodejs中的fs模块的使用
    查看>>
    NodeJS使用淘宝npm镜像站的各种姿势
    查看>>
    NodeJs入门知识
    查看>>
    nodejs包管理工具对比:npm、Yarn、cnpm、npx
    查看>>
    NodeJs单元测试之 API性能测试
    查看>>
    nodejs图片转换字节保存
    查看>>
    nodejs在Liunx上的部署生产方式-PM2
    查看>>
    nodejs基于art-template模板引擎生成
    查看>>
    nodejs字符与字节之间的转换
    查看>>
    NodeJs学习笔记001--npm换源
    查看>>
    NodeJs学习笔记002--npm常用命令详解
    查看>>
    nodejs学习笔记一——nodejs安装
    查看>>
    vue3+Element-plus icon图标无法显示的问题(已解决)
    查看>>
    NodeJS实现跨域的方法( 4种 )
    查看>>
    nodejs封装http请求
    查看>>
    nodejs常用组件
    查看>>