页面顶部 Top
文件:  root - text - article - 2020 - 01 - lowest-common-ancestor-of-2-nodes-in-binary-tree.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 168 次阅读, 19578 次搜索 | 147 个单词

定阅此目录的博客 | 浏览 | 博客存档
Hi, here's your problem today. This problem was recently asked by Apple:

You are given the root of a binary tree, along with two nodes, A and B. Find and return the lowest common ancestor of A and B. For this problem, you can assume that each node also has a pointer to its parent, along with its left and right child.


class TreeNode:
def __init__(self, val):
self.left = None
self.right = None
self.parent = None
self.val = val

def lowestCommonAncestor(root, a, b):
# Fill this in.

# a
# / \
# b c
# / \
# d* e*
root = TreeNode('a')
root.left = TreeNode('b')
root.left.parent = root
root.right = TreeNode('c')
root.right.parent = root
a = root.right.left = TreeNode('d')
root.right.left.parent = root.right
b = root.right.right = TreeNode('e')
root.right.right.parent = root.right

print lowestCommonAncestor(root, a, b).val
# c
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 168 次阅读, 19578 次搜索 | 147 个单词 定阅此目录的博客

猜您喜欢...

  1. Algorithm Interview: No Adjacent Repeating Characters
  2. Reverse a Linked List
  3. Autorun.inf Virus Protection
  4. Daily Interview Problem: Count Number of Unival Subtrees
  5. [Daily Problem] Add two numbers as a linked list
  6. Batch Programming in XP
  7. Daily Interview Question: Create a Simple Calculator
  8. Algorithm Interview: Maximum Path Sum in Binary Tree
  9. Daily Interview Problem: Queue Using Two Stacks
  10. [Daily Problem] Longest Palindromic Substring

评论 (0)

    当前页暂时没有评论。


最后更新: October 30 2020 14:21:12 | RSS Subscription
牛排怎么做才好吃? | <meta name="机器人" content="索引, 跟踪">