struct BTNode { int keyNum ; //实际关键字的个数 PBTNode parent;//指向父亲节点 PBTNode *ptr ; keyType *key ; //关键字向量 }