Я хочу вставить новый узел рекурсивно, а затем вернуть этот вновь вставленный узел из функции insertRec
.Вызовы функций выглядят так:
void insert(int value) {
root = insertRec(root, null, value);
root = insertRec(root, null, 15);
root = insertRec(root, null, 6);
root = insertRec(root, null, 5);
root = insertRec(root, null, 3);
root = insertRec(root, null, 4);
//insertFixup(newNode);
}
RedBlackNode insertRec(RedBlackNode current, RedBlackNode prev, int value)
{
if(current == null) {
current = new RedBlackNode(value);
current.p = prev;
}
else if(current.key < value) {
current.right = insertRec(current.right, current, value);
}
else {
current.left = insertRec(current.left, current, value);
}
return current;
}
Как это сделать, при этом гарантируя, что insertRec
работает правильно?Прямо сейчас, если я не верну current
из insertRec
, я не смогу правильно создать дерево.