C/C++遍历二叉树问题,找了一个小时,还是没找到错误在哪里!请达人帮忙看下,感谢!

日期:2022-04-12 01:20:18 人气:1

C/C++遍历二叉树问题,找了一个小时,还是没找到错误在哪里!请达人帮忙看下,感谢!

#include <stdio.h>
#include <string.h>
typedef struct tree
{
char data;
struct tree *lchild,*rchild;
}tre;
/*查找中序根结点位置*/
int find(char c,char A[],in
    A+
热门评论