1

我现在正在使用朋友类在 C++ 中制作二叉树。

但是,出了点问题,我不知道应该改变什么

template <class Type>
class BinaryTree{
public:

BinaryTree(){
    root = new BTNode<Type>();  
    currentNode = NULL;
}
~BinaryTree(){
    delete root, currentNode;
};

void insertItem(Type data){
    if(currentNode==NULL){
        Item = data;
        currentNode = root;
    }
    if(data<currentNode){
        if(currentNode->Left.is_empty()){
            currentNode->Left = new BTNode(data);
            currentNode = root;
            return;
        }
        else{
            currentNode = currentNode->Left;
            return insertItem(data);
        }
    }
    if(data>currentNode){
        if(currentNode->Right.is_empty()){
            currentNode->Right = new BTNode(data);
            currentNode = root;
            return;
        }
        else{
            currentNode = currentNode->Right;
            return insertItem(data);
        }
    }
    currentNode = root;
    return; 
}

void deleteItem(Type data){}
void is_empty(){
    if (this == NULL) return 1;
    else return 0;
}
void printInOrder(){                                
    if(!(currentNode->Left).is_empty()){
        currentNode = currentNode->Left;            
    }
}

private:
    BTNode<Type>* currentNode;
    BTNode<Type>* root;
};

这里是存储BinaryTree项目的BTNode类,并指向下一个节点:

template <class Type>
class BTNode{
public:

    friend class BinaryTree<Type>;

    BTNode(){}
    BTNode(Type data){
        Item = data;
    }
    ~BTNode(){}


private:
    Type Item;
    BTNode<Type> *Left, *Right;
};

二叉树类的 BTNode*root 指向第一个节点,currentNode 将指向“当前节点”,同时执行诸如插入或合并节点之类的操作。

但是当我编译时,编译器错误 C2143 出现在 BinaryTree 类中,这里:

BTNode<Type>* root;
BTNode<Type>* currentNode;

错误说;前面没有令牌< 但我不知道出了什么问题

4

1 回答 1

0

似乎BTNode在类中没有正确定义BinaryTree。编译器不理解那BTNode是一种类型。确保正确包含和链接文件。

于 2013-06-17T15:39:56.847 回答