(3)求二叉树中结点总数。
(2012-05-30 12:41:53)
标签:
二叉树指针队列根结点总数it |
#include <stdio.h>
#include <stdlib.h>
#define maxsize 20
typedef int datatype;
typedef struct node{
datatype data;
struct node
*lchild,*rchild;
}bitree;
int m=0;
//二叉树的建立函数
bitree
*creattree()
{bitree
*Q[maxsize];