#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;
}
#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;
}