Example #1
0
BTree* CreateBSTree()
{
    /* Construct a binary search tree as below:
             G
         E         K
      C     F   H     M
        D
    */

    BTree *root = (BTree *)malloc(sizeof(BTree));
    root->data = 'G';
    root->lchild = NULL;
    root->rchild = NULL;

    BTree *e = InsertLeftNode(root, 'E');
    InsertRightNode(e, 'F');
    BTree *c = InsertLeftNode(e, 'C');
    InsertRightNode(c, 'D');

    BTree *k = InsertRightNode(root, 'K');
    InsertLeftNode(k, 'H');
    InsertRightNode(k, 'M');

    return root;
}
Example #2
0
int main()
{
	int i;
	BiTreeNode *q[MaxSize+1];
	BiTreeNode *root;
	int left,right,temp;
	int Num[MaxSize]={0};
	char strA[MaxSize]="befcgdh";//pre_order
	char strB[MaxSize]="febgchd";//in_order
	char point;int n;
	n=strlen(strA);
	Initiate(&root);
	for(i=0;i<n;i++)
	{
		point=strA[i];
		temp=Search(strB,point);
		left=SearchLeft(Num,temp);
		right=SearchRight(Num,temp);
		if(left==-1&&right==-1)
		{
			q[temp]=InsertLeftNode(root,point);
			Num[temp]=1;
		}
		else if(left!=-1&&q[left]->rightChild==NULL)
		{
			q[temp]=InsertRightNode(q[left],point);
			Num[temp]=1;
		}
		else if(right!=-1&&q[right]->leftChild==NULL)
		{
			q[temp]=InsertLeftNode(q[right],point);
			Num[temp]=1;
		}
	}
	PrintBiTree(root,0);
	printf("****************************************\n\n");
	printf("PreOrder: \t");
	PreOrder(root->leftChild,Visit);
	printf("\nInOrder:\t");
	InOrder(root->leftChild,Visit);
	printf("\nPostOrder: \t");
	PostOrder(root->leftChild,Visit);
	printf("\n*****************************************************************************\n\t\t\t\bCopyright @ 2009 Gary All Right Reserved\n");
	return 0;
}
Example #3
0
BTree* CreateTree()
{
    /* Construct a binary tree as below:
         A
      B     C
    D     E   F
      G
    */

    BTree *root = (BTree *)malloc(sizeof(BTree));
    root->data = 'A';
    root->lchild = NULL;
    root->rchild = NULL;

    BTree *b = InsertLeftNode(root, 'B');
    BTree *d= InsertLeftNode(b, 'D');
    InsertRightNode(d, 'G');

    BTree *c = InsertRightNode(root, 'C');
    InsertLeftNode(c, 'E');
    InsertRightNode(c, 'F');

    return root;
}