题解 | #在二叉树中找到两个节点的最近公共祖先#

在二叉树中找到两个节点的最近公共祖先

https://www.nowcoder.com/practice/e0cc33a83afe4530bcec46eba3325116

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 * }
 */

public class Solution {
    /**
     *
     * @param root TreeNode类
     * @param o1 int整型
     * @param o2 int整型
     * @return int整型
     */
    public int lowestCommonAncestor (TreeNode root, int o1, int o2) {
        // write code here
        Map<TreeNode, TreeNode> map = new HashMap<>();
        TreeNode f = root;
        TreeNode s = root;
        boolean flag1 = false, flag2 = false;
        Queue<TreeNode> queues = new LinkedList<>();
        if (root == null) {
            return -1;
        }
        map.put(root, null);
        queues.add(root);
        while (!queues.isEmpty()) {
            Queue<TreeNode> temp = new LinkedList<>();
            if (queues.peek().left != null) {
                TreeNode left = queues.peek().left;
                map.put(left, queues.peek());
                temp.add(queues.peek().left);
                if (left.val == o1) {
                    flag1 = true;
                    f = left;
                }
                if (left.val == o2) {
                    flag2 = true;
                    s = left;
                }
            }
            if (queues.peek().right != null) {
                TreeNode right = queues.peek().right;
                map.put(right, queues.peek());
                temp.add(queues.peek().right);
                if (right.val == o2) {
                    flag2 = true;
                    s = right;
                }
                if (right.val == o1) {
                    flag1 = true;
                    f = right;
                }
            }
            if (flag1 && flag2) {
                break;
            }
            queues.poll();
            while (!temp.isEmpty()) {
                queues.add(temp.poll());
            }
        }
        Map<Integer, Integer> map1 = new HashMap<>();
        Map<Integer, Integer> map2 = new HashMap<>();
        int count1 = 0, count2 = 0;
        while (f != null) {
            map1.put(f.val, count1++);
            f = map.get(f);
        }
        while (s != null) {
            map2.put(s.val, count2++);
            s = map.get(s);
        }
        int location = Integer.MAX_VALUE;
        int ans = root.val;
        for (Map.Entry<Integer, Integer> entry : map1.entrySet()) {
            if (map2.containsKey(entry.getKey()) && entry.getValue() < location) {
                ans = entry.getKey();
                location = entry.getValue();
            }
        }
        return ans;
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
allin秋招的单身...:我投过这家 上来就发个设计图给我,让我做好发到他邮箱
点赞 评论 收藏
分享
07-25 11:26
清华大学 Java
打开电脑,思绪又回到了7月份刚开始的时候,感觉这个月过的如梦如幻,发生了太多事,也算是丰富了我本就是平淡的人生吧太早独立的我习惯了一切都是自己做决定,拥有绝对的决定权,而且永远不会听取别人的建议。我就是那个恋爱四年出轨的男主啦,感觉既然在牛客开了这个头,那我就要做个有始有终的人。从我出轨到结束再到和女朋友和好如初真的太像一场梦了,短短的一个月我经历了太多,也成长了很多,放下了那些本就不属于我的,找回了那些我不该放弃的。我的人生丰富且多彩,但人不能一直顺,上天总会让你的生活中出点乱子,有好有坏,让你学会一些东西,让你有成长。我和女朋友的恋爱四年太过于平淡,日常除了会制造一些小浪漫之外,我们的生活...
段哥亡命职场:不得不说,我是理解你的,你能发出来足见你是个坦诚的人,至少敢于直面自己的内心和过往的过错。 这个世界没有想象中那样非黑即白,无论是农村还是城市,在看不见的阴影里,多的是这样的事。 更多的人选择站在制高点去谩骂,一方面是社会的道德是需要制高点的,另一方面,很多人不经他人苦,却劝他人善。 大部分的我们,连自己生命的意义尚且不能明晰,道德、法律、困境,众多因果交织,人会迷失在其中,只有真的走出来之后才能看明白,可是没走出来的时候呢?谁又能保证自己能走的好,走的对呢? 可是这种问题有些人是遇不到的,不去追寻,不去探寻,也就没了这些烦恼,我总说人生的意义在过程里,没了目标也就没了过程。 限于篇幅,没法完全言明,总之,这世界是个巨大的草台班子,没什么过不去了,勇敢面对,革故鼎新才是正确,祝你早日走出来。查看图片
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务