二叉树:struct node{int key;node *parent, *left, *right};为什么不可以用int,之后使left, right, parent等于结点编号struct node{int key;int parent, left ,right;};链表同理 查看完整描述