码迷,mamicode.com
首页 > 其他好文 > 详细

CC150 4.5

时间:2014-11-27 08:01:56      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:interview

4.5 Write an algorithm to find the ‘next’ node (i.e., in-order successor) of a given node in a binary search tree where each node has a link to its parent.

// BST.

class Node
{
  Node parent;
  Node left;
  Node right;
}

Node min(Node node)
{
  if (node == null)
    return null;
  while(node.left != null)
    node = node.left;
  return node;
}

// in-order ?
Node next(Node node)
{
  if (node == null)
    return null;
    
  if (node.right != null)
  {
    Node toReturn = node.right;
    while (toReturn.left != null)
    {
      toReturn = toReturn.left;
    }
    return toReturn;
  }
  
  while( node != null)
  {
    if (node == node.parent.left)
      return node.parent;
    else
      node = node.parent;
  }
  
  return null;
}


CC150 4.5

标签:interview

原文地址:http://7371901.blog.51cto.com/7361901/1583044

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!