二叉树三叉链表调用
/*作业:建立三叉链表,实现先序、中序非递归遍历(不得设栈)选作:实现后序递归遍历*/#include <stdio.h>typedef struct node{ char elem;struc