摘要:
#include using namespace std; const int LH=1; const int RH=-1; const int EH=0; struct BitNode { int data; int bf; BitNode *lchild,*rchild; }; void L_Rotate(BitNode *&p) { BitNode *R=p... 阅读全文
posted @ 2018-12-05 16:58
shenyuli
阅读(141)
评论(0)
推荐(0)