#include<stdio.h>#include<cstdlib>typedef struct node//树的节点 { int data;//节点的值 struct node* left; struct node* right; }Node;typedef struct//树根 { Node* root; }Tree;void insert(Tree* tree,int value){ Node* node=(Node*)malloc(
Other
2024-05-15
41 点赞
0 评论
62 浏览