吴晓阳
发布于 2023-05-23 / 417 阅读
0

树的数据结构定义

#include<bits/stdc++.h>
using namespace std;
const int m = 10;           //树的度
typedef struct node;
typedef node *tree;
struct node
{
	char data;             //数据域
	tree child[m];          //指针域,指向若干孩子结点
};

int main()
{
	
	return 0;
}