面试题34:二叉树中和为某一值的路径

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

struct BinaryTreeNode
{
     
    int m_nValue;
    BinaryTreeNode* m_pLeft;
    BinaryTreeNode* m_pRight;
};
void FindPath(BinaryTreeNode* pRoot,int expectedSum)
{
     
    if(pRoot==nullptr)
        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==nullptr&&pRoot->m_pRight==nullptr;
    if(currentSum==expectedSum&&isLeaf)
    {
     
        printf("A path is found:");
        std::vector<int>::iterator iter=path.begin();
        for(;iter!=path.end();++iter)
            printf("%d\t",*iter);
    }

    //如果不是叶子节点,则遍历它的子节点
    if(pRoot->m_pLeft!=nullptr)
        FindPath(pRoot->m_pLeft,expectedSum,path,currentSum);
    if(pRoot->m_pRight!=nullptr)
        FindPath(pRoot->m_pRight,expectedSum,path,currentSum);

    //在返回父节点之前,在路径上删除当前节点
    path.pop_back();
}

你可能感兴趣的:(剑指Offer,二叉树,c++)