假设树的存储结构采用孩子兄弟表示法,写出树的先序遍历算法。该算法的函数头为:voidPreOrderTree(TNode*root,void (*Visit)()),树的孩子兄弟表示法数据类型定义为:typedefstructtnode{DataTypedata;structtnode*firstchild,*nextsibling;}TNode,*Tree;
慕雪6442864
相关分类