LeetCode Day3
Lowest Common Ancestor of a Binary Search Tree

import java.util.ArrayList;
import java.util.List;
/**
* LeetCode: Lowest Common Ancestor of a Binary Search Tree
* Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST
*
* @author LuoPeng
* @time 215.8.5
*
*/
public class LowestCommonAncestor {
/**
* If a node A is the common ancestor, and its left child and right child are not at the same time.
* A is the Lowest Common Ancestor
*
* @param root the root of the tree
* @param p
* @param q
* @return lowest common ancestor (LCA) of p and q
*/
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if ( root == null || p == root || q == root) {return root;}
TreeNode lca = null;
/*
* If one child is null, the lowest common ancestor must be the child of the other child of root
*/
if ( root.left == null) {
lca = lowestCommonAncestor(root.right, p, q);
} else if ( root.right == null) {
lca = lowestCommonAncestor(root.left, p, q);
} else {
boolean first = isCommonAncestor(root.left, p, q);
boolean second = isCommonAncestor(root.right, p, q);
if ( first) {
// if root.left is a common ancestor, the LCA must be root.left or a child of it.
lca = lowestCommonAncestor(root.left, p, q);
} else if (second) {
// if root.right is a common ancestor, the LCA must be root.right or a child of it.
lca = lowestCommonAncestor(root.right, p, q);
} else {
// For root is a common ancestor of p and q, the LCA must be root if the left child
// and right child are not the common ancestors.
lca = root;
}
}
return lca;
}
/**
* Whether root is the common ancestor of p and q
*
* @param root a node
* @param p a node
* @param q a node
* @return True if root is the common ancestor of p and q, otherwise false.
*/
private boolean isCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if ( root == null) {return false;}
TempQueue queue = new TempQueue();
TreeNode temp = null;
boolean first = false;
boolean second = false;
// Breadth First Search
queue.push(root);
while ( !queue.empty()) {
temp = queue.peek();
queue.pop();
if ( temp ==p) {
first = true;
} else if ( temp == q) {
second = true;
}
// add the child
if ( temp.left != null) {
queue.push(temp.left);
}
if ( temp.right != null) {
queue.push(temp.right);
}
// break if p and q have bean found
if ( first && second) {
break;
}
}
return first && second;
}
}
/**
* Queue
*
*/
class TempQueue {
public void push(TreeNode x) {
values.add(x);
}
public void pop() {
values.remove(0);
}
public TreeNode peek() {
return values.get(0);
}
public int size() {
return values.size();
}
public boolean empty() {
return values.size()==0;
}
private List<TreeNode> values = new ArrayList<TreeNode>();
}
LeetCode Day3的更多相关文章
- 【LeetCode算法题库】Day3:Reverse Integer & String to Integer (atoi) & Palindrome Number
[Q7] 把数倒过来 Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Outpu ...
- leetcode每日刷题计划-简单篇day3
收到swe提前批面试hhh算是ep挂了的后续 努力刷题呀争取今年冲进去! Num 21 合并两个有序链表 Merge Two Sorted Lists 注意新开的链表用来输出结果的是ListNode ...
- 我为什么要写LeetCode的博客?
# 增强学习成果 有一个研究成果,在学习中传授他人知识和讨论是最高效的做法,而看书则是最低效的做法(具体研究成果没找到地址).我写LeetCode博客主要目的是增强学习成果.当然,我也想出名,然而不知 ...
- LeetCode All in One 题目讲解汇总(持续更新中...)
终于将LeetCode的免费题刷完了,真是漫长的第一遍啊,估计很多题都忘的差不多了,这次开个题目汇总贴,并附上每道题目的解题连接,方便之后查阅吧~ 477 Total Hamming Distance ...
- [LeetCode] Longest Substring with At Least K Repeating Characters 至少有K个重复字符的最长子字符串
Find the length of the longest substring T of a given string (consists of lowercase letters only) su ...
- Leetcode 笔记 113 - Path Sum II
题目链接:Path Sum II | LeetCode OJ Given a binary tree and a sum, find all root-to-leaf paths where each ...
- Leetcode 笔记 112 - Path Sum
题目链接:Path Sum | LeetCode OJ Given a binary tree and a sum, determine if the tree has a root-to-leaf ...
- Leetcode 笔记 110 - Balanced Binary Tree
题目链接:Balanced Binary Tree | LeetCode OJ Given a binary tree, determine if it is height-balanced. For ...
- Leetcode 笔记 100 - Same Tree
题目链接:Same Tree | LeetCode OJ Given two binary trees, write a function to check if they are equal or ...
随机推荐
- IOS 下雪动画
#define SNOW_IMAGENAME @"snow" #define IMAGE_X arc4random()%(int)Main_Screen_Width #define ...
- LoadRunner性能测试中Controller场景创建需注意的几点
在LR工具做性能测试中,最关键的一步是Controller场景的设计,因为场景的设计与测试用例的设计相关联,而测试用例的执行,直接影响最终的测试结果是怎么的,因此,我们每设计一种场景,就有可能是一个测 ...
- FlashBack-SCN-TIMESTAMP
一.基于时间(as of timestamp)的flashback1.创建表create table flash_tab(id,vl) as select rownum,oname from ( se ...
- Head First C#(赛狗日)
实验背景: 人:Joe.Bob和AI希望参见赛狗赌博.最初,Joe有50元,Bob有75元,AI有45元.每次比赛前,他们都会各自决定是否下注以及所押的赌金.直到比赛前,他们都可以改变赌金,但是一旦比 ...
- 【错排问题】【HDU2048】神、上帝以及老天爷
神.上帝以及老天爷 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total ...
- 初次使用Oracle
这是我第一次写博客,主要是记录下自己这半个多月以来的学习笔记,以备以后可以随时查看. 首先就是安装Oracle的问题的,我系统是Win7 64位的,出现各种问题郁闷得不行,最终安装个Oracle102 ...
- Android开发_关于点击事件
为了防止用户或者测试MM疯狂的点击某个button: 创建一个工具类 public class Tools { private static long lastClickTime; public st ...
- 封装一些数据库SQLCipher的方法(增、删、改、查)
上一篇随笔只是简单的说了一下使用SQLCipher框架,介绍的比较笼统,可能看一遍之后更加蒙圈了,为了更好的使用这个数据库,整理了我在公司项目的需要用的方法,包括创建表,插入数据,更新数据,搜索查询数 ...
- 预载入和JavaScript Image()对象
预载入和JavaScript Image()对象 很多high-res图像真的可以使 Web 站点更加整洁.但是它们也会使站点的访问速度变慢——图像是文件,文件使用带宽,带宽直接与等待时间相关.是该了 ...
- 克隆虚拟机后修改MAC地址
克隆后的主机找不到eth0 修改 /etc/udev/rules.d/70-persistent-net.rules 删除原eth0的信息,将eth1的name改为eth0 修改 /etc/sysco ...