weidagang2046的专栏

物格而后知致
随笔 - 8, 文章 - 409, 评论 - 101, 引用 - 0

导航

<2025年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

常用链接

留言簿(12)

随笔档案(8)

文章分类(421)

文章档案(409)

相册

Link

搜索

  •  

最新评论

阅读排行榜

评论排行榜

Find Common Ancestor

Find Common Ancestor
Problem: find the common ancestor of two nodes in a tree

Given a "tree" pointer pointing to the root node of a tree and the other two pointers to two nodes in the tree. You are expected to write a C++ subroutine to find the common ancestor of the two nodes. In any unexpected condition, your code should return null pointer and avoid crashing.

For example, if the tree is like below, B is the common ancestor of E and G; A is the common ancestor of H and F; D is the common ancestor of D and G.

 
gailya 20:30:17
You are allowed to use recursion but as few as possible. You are NOT allowed to use STL. Please follow the type definitions shown below:

//tree node type
typedef struct _Node
...{
    char value;
    struct _Node* left;
    struct _Node* right;
}Node;

class CommonNodeFinder
...{
    //add any auxiliary code here as you wish.
public:
    inline Node* FindCommonAncestor(Node* tree, Node* node_1, Node* node_2)
    ...{
        //your code here.
    }
}

posted on 2005-10-27 21:06 weidagang2046 阅读(295) 评论(0)  编辑  收藏 所属分类: Others


只有注册用户登录后才能发表评论。


网站导航: