二叉树之旋转 以A节点来进行旋转之。 旋转的结果为 代码 node* left_left_rotate(node *n) { node* temp = n->left; n->left = temp->right; temp->right = n; return temp; }