文件名称:二叉树寻找最近的相同的父亲
文件大小:3KB
文件格式:C
更新时间:2013-04-29 16:33:29
二叉树,相同的父亲,C
二叉树寻找最近的相同的父亲, typedef struct tn { int Element; struct tn *Left; struct tn *Right; struct tn *Parent; }TreeNode, *Tree;
文件名称:二叉树寻找最近的相同的父亲
文件大小:3KB
文件格式:C
更新时间:2013-04-29 16:33:29
二叉树,相同的父亲,C
二叉树寻找最近的相同的父亲, typedef struct tn { int Element; struct tn *Left; struct tn *Right; struct tn *Parent; }TreeNode, *Tree;