二叉樹:struct node{int key;node *parent, *left, *right};為什么不可以用int,之后使left, right, parent等于結點編號struct node{int key;int parent, left ,right;};鏈表同理 查看完整描述