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

二叉树中和为某一值的路径

时间:2014-12-02 00:21:15      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:路径   二叉树   

题目:输入一二叉树和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶子结点所经过的结点形成一条路径。二叉树的定义如下:

struct BinaryTreeNode
{
    int m_nVlaue;
    BinaryTreeNode* m_pLeft;
    BinaryTreeNode* m_pRight;
};

分析:对二叉树进行前序遍历,并利用递归来进行回溯到父节点的情况。实现如下:

void FindPath(BinartTreeNode* pRoot,int expectedSum)
{
    if(pRoot==NULL)
        return;
        
    std::vector<int> path;
    int currentSum=0;
    FindPath(pRoot,expectedSum,path,currentSum);
}
void FindPath(BinaryTreeNode* pRoot,int expectedSum,std::vector<int>& path,int currentSum)
{
    currentSum+=pRoot->m_nValue;
    path.push_back(pRoot->m_nValue);
    
    bool isLeaf=pRoot->m_pLeft==NULL&&pRoot->m_pRight==NULL;
    if(currentSum==exceptedSum&&isLeaf)
    {
        printf("A path is found: ");
        std::vector<int>::iterator iter=path.begin();
        for(;iter!=path.end();++iter)
            printf("%d\t",*iter);
        printf("\n");
    }
    
    if(pRoot->m_pLeft!=NULL)
        FindPath(pRoot->m_pLeft,expectedSum,path,currentSum);
    if(pRoot->m_pRight!=NULL)
        FindPath(pRoot->m_pRight,expectedSum,path,currentSum);
        
    path.pop_back();
}


本文出自 “仙路千叠惊尘梦” 博客,请务必保留此出处http://secondscript.blog.51cto.com/9370042/1585215

二叉树中和为某一值的路径

标签:路径   二叉树   

原文地址:http://secondscript.blog.51cto.com/9370042/1585215

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