typedef struct node {telemtype data ; struct node lch,rch; }bin,*bit; //二叉链表定义 void xxbl(bit root) {if(root==NULL) return ; else { visit(root->data); xxbl(root->lch); xxbl(root->rch); } } //先序遍历
typedef struct node {telemtype data ; struct node lch,rch; }bin,*bit; //二叉链表定义
void xxbl(bit root) {if(root==NULL) return ; else { visit(root->data); xxbl(root->lch); xxbl(root->rch); } } //先序遍历
第一周学习日志
原文:https://www.cnblogs.com/81dby/p/12811592.html