Lines Matching full:temp
118 Node* temp = root_;
121 root_ = temp;
142 Node* temp = root_;
145 root_ = temp;
246 Node* temp = current->left_;
247 current->left_ = temp->right_;
248 temp->right_ = current;
249 current = temp;
262 Node* temp = current->right_;
263 current->right_ = temp->left_;
264 temp->left_ = current;
265 current = temp;