在二元树中找出和为某一值的所有路

输入一个整数和一棵二元树。从树的根结点开始往下访问一直到叶结点所经过的所有结点形成一条路径。打印出和与输入整数相等的所有路径。例如输入整数22 和如下二元树
   10
   / \
  5  12
 / \ / \

 4 7 8 9

则打印出两条路径: 10, 12 10, 5,7。二元树节点的数据结构定义为:
structBinaryTreeNode // a nodein thebinarytree
{
intm_nValue; // valueof node
BinaryTreeNode *m_pLeft; // leftchildof node
BinaryTreeNode *m_pRight; //right childof node

structBinaryTreeNode // a nodein thebinarytree
{
intm_nValue; // valueof node
BinaryTreeNode *m_pLeft; // leftchildof node
BinaryTreeNode *m_pRight; //right childof node

}

#include<stdio.h>  
#include<stdlib.h>  

#define MAX 20  
  
typedef struct BiTreeNode  
{  
    int data;  
    struct BiTreeNode *left;  
    struct BiTreeNode *right;  
}BiTreeNode_T;  
  
/*创建二叉树*/  
BiTreeNode_T * CreateBSTree(int *data,int pos,int len)  
{  
    BiTreeNode_T * tr;  
    if(pos>=len)  
    {  
        return NULL;  
    }  
    else  
    {  
        tr = (BiTreeNode_T *)malloc(sizeof(BiTreeNode_T));  
        tr->data = data[pos];  
        tr->left =  CreateBSTree(data, 2*pos+1, len);  
        tr->right = CreateBSTree(data, 2*pos+2, len);    
        return tr;  
    }  
}  
  
//中序遍历二叉树  
void InOrderTraverse(BiTreeNode_T *root)  
{  
    if(root !=NULL)  
    {  
        InOrderTraverse(root->left);   
		
		if(NULL != root->left || NULL != root->right)
			printf("%d not leaf node\n", root->data);
		else
			printf("%d \n",root->data);
		
        InOrderTraverse(root->right);  
    }  
}  
  
//打印路径  
void printPath(int path[], int top)  
{  
	int i = 0;
    for(i=0; i<top; i++)  
        printf("%d ", path[i]); 
	
    printf("\n");  
}  
  
//查找和为sum的路径,path数组存放路径的值,top代表每个可行的路径中的元素个数  
void findPath(BiTreeNode_T *root, int sum, int top, int path[])  
{  
    path[top++] = root->data;  
    sum -= root->data;  
      
    if (root->left == NULL && root->right==NULL)   
    {  
        /*叶子节点情况*/
        if (sum == 0)   
        {  
            printPath(path, top);
			top--;
			sum += root->data;
        }  
    }   
    else   
    {   
        /*非叶子节点情况*/
        if(sum <= 0)   
        {  
            if(sum == 0) 
               printPath(path, top);
			top--;
			sum += root->data;
			return;
        }
        
        if (root->left != NULL)   
               findPath(root->left, sum, top, path);  
		
        if (root->right!=NULL)   
               findPath(root->right, sum, top, path);  
    }    
}  
  
int main()  
{  
    int data[]={10, 5, 12, 15, 7, 8, 9};  
    int len=sizeof(data)/sizeof(int);  
  
    BiTreeNode_T * root = CreateBSTree(data, 0, len);   
    InOrderTraverse(root);  
    printf("\n");  
      
    int sum=22;  
    int top=0;  
    int path[MAX] = {0};  
	printf("-------------------------------------\n");
    findPath(root, sum, top, path);  
    return 0;  
}  
/*
打印
4 
5 not leaf node
7 
10 not leaf node
8 
12 not leaf node
9 

-------------------------------------
10 5 7 
10 12

*/



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值