#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
205 点赞
3 评论
310 浏览