当前位置:首页 > 未命名 > 正文内容

【解题报告】【lintcode88】Lowest Common Ancestor

u3blog9年前 (2016-05-17)未命名543

题意

给出一颗二叉树中的两个节点,寻找它们的最小公共祖先

解法

分为两个部分 1.寻找给出节点的路径 2.比较这两个路径,寻找最小公共祖先

代码

  1. public class Solution {
  2. /**
  3. * @param root: The root of the binary search tree.
  4. * @param A and B: two nodes in a Binary.
  5. * @return: Return the least common ancestor(LCA) of the two nodes.
  6. */
  7. List<List<TreeNode>> lists;
  8. public TreeNode lowestCommonAncestor(TreeNode root, TreeNode A, TreeNode B) {
  9. TreeNode node = null;
  10. if (root == null)
  11. return null;
  12. lists = new ArrayList<List<TreeNode>>();
  13. List<TreeNode> a = new ArrayList<>();
  14. List<TreeNode> b = new ArrayList<>();
  15. findNode(root,a,A);
  16. findNode(root,b,B);//寻找路径
  17. a = lists.get(0);
  18. b = lists.get(1);
  19. int la = a.size();
  20. int lb = b.size();
  21. int i = 0,j=0;
  22. //开始比较路径
  23. while ( i<la && j<lb){
  24. if (a.get(i).val != b.get(j).val) {
  25. node = a.get(i-1);
  26. break;
  27. }
  28. i++;
  29. j++;
  30. }
  31. if (i >= la||j >= lb){
  32. return a.get(i-1);
  33. }
  34. return node;
  35. }
  36. private void findNode(TreeNode node, List<TreeNode> list,TreeNode target){
  37.  
  38. if (node == null)
  39. return;
  40. if (node.val == target.val){
  41. list.add(node);
  42. lists.add(list);
  43. return;
  44. }
  45. List<TreeNode> list1 = new ArrayList<>();
  46. list1.addAll(list);
  47. list1.add(node);
  48. findNode(node.left,list1,target);
  49. findNode(node.right,list1,target);
  50. }
  51. }

扫描二维码推送至手机访问。

版权声明:本文由u3blog发布,如需转载请注明出处。

本文链接:https://u3blog.xyz/?id=416

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。