Я пишу бинарное дерево, начал получать ошибки, поэтому я удалил все свои шаблоны, но он все равно не скомпилируется из-за моей последней ошибки!
Написание рекурсивной функции добавления, но не уверен, как добавить мой новый dataClass в мое дерево, когда оно находит пустой узел
#pragma once
#include <cstring>
typedef dataClass T;
//template <class T>
class treeNode
{
private:
treeNode* _greaterNode;
treeNode* _lessNode;
T _data;
public:
treeNode(T data);
void add(T data);
void del(T data);
};
//template <class T>
treeNode/*<T>*/::treeNode(T data)
{
_data = data;
_greaterNode = _lessNode = NULL;
}
//template <class T>
void treeNode/*<T>*/::add(T data)
{
if(_data == NULL)
{
// add here
this = new treeNode(data);
}
else if(data > _data)
{
// data is bigger go to greater
this->_greaterNode->add(data);
}
else if(data < _data)
{
// data is lower go to less than
this->_lessNode->add(data);
}
else
{
// data the same, throw exception
}
}
Разбивается на:
if(_data == NULL)
{
// add here
this = new treeNode(data);
}