c++ - 为二叉搜索树创建一个新节点

标签 c++ pointers binary-search-tree new-operator friend

对于一个学校项目,我正在尝试制作一个二叉搜索树,同时我们应该学习如何在类里面使用“友元”。我在编译时遇到的错误是:[为了清楚起见,我在错误来源的代码中添加了注释](请记住,我不允许将 Node 嵌套在 BST 类中,它们都应该位于单独的文件和类中为了这个编程任务)

BST.cpp: In member function `void BST::insert(std::string, std::string)':
BST.cpp:51: error: non-lvalue in assignment
BST.cpp:58: error: non-lvalue in assignment
BST.cpp:62: error: non-lvalue in assignment
makefile.txt:9: recipe for target `BST.o' failed
make: *** [BST.o] Error 1

我尝试在 BST.cpp 和 Node.cpp 中使用“new”运算符,但我仍然无法摆脱这些错误消息。我相信我可能会遗漏一些让编译器不喜欢它的语法。以下是此作业中使用的文件:(请注意一些功能尚未使用,因为我还没有在项目中进行那么多。) 节点.h

#ifndef NODE_H_INCLUDED
#define NODE_H_INCLUDED

#include <iostream>
#include <string>

using namespace std;

class BST;
class Node
{
public:
    Node(string key, string data)
    {m_key = key; m_data = data;}
    ~Node();
    static string get_key(); //takes in ptr to node and returns its key
    static string get_data(); //takes in ptr to node and returns its data
    static Node* get_left(); //takes in ptr to node and returns its left child pointer
    static Node* get_right(); //takes in ptr to node and returns its right child pointer
    static Node* get_parent(); //takjes in ptr to node and returns its parent pointer
    static Node* create_node(string key, string data);
    static void destroy_node();

private:
    string m_key;
    string m_data;
    Node *m_left;
    Node *m_right;
    Node *m_parent;
};


#endif // NODE_H_INCLUDED

节点.cpp

#include "Node.h"

static string Node::get_key()
{
    return m_key;
}
static string Node::get_data()
{
    return m_data;
}
static Node* Node::get_left()
{
    return m_left;
}
static Node* Node::get_right()
{
    return m_right;
}
static Node* Node::get_parent()
{
    return m_parent;
}
static Node* Node::create_node(string key, string data)
{
    Node* ptr = new Node(key, data);
    ptr->m_left = NULL;
    ptr->m_right = NULL;
    ptr->m_parent = NULL;
    return ptr;
}

到目前为止,我的意图是让 Node::create_Node 创建一个新节点,使所有指针无效,最后将节点指针传回 BST.cpp,以便可以修改指针并将其插入到树中。下面是 BST.cpp 和 BST.h(为了清楚起见,我在错误发生的地方添加了注释) BST.h:

#ifndef BST_H_INCLUDED
#define BST_H_INCLUDED

#include <iostream>
#include <string>

using namespace std;

class BST
{
public:
    BST()
    {m_root = NULL;}
    ~BST();
    void insert(string key, string data);
    void find(string key);
    void remove(string key, string data);
    void print();
    friend class Node;
private:
    Node* m_root;

};

#endif // BST_H_INCLUDED

最后,BST.cpp(发生错误的地方)当我尝试修改 z 的指针(z 是刚刚创建的全新节点的指针)包括其 m_left、m_right 和 m_parent 时,错误发生了。

#include "BST.h"
#include "Node.h"

void BST::insert(string key, string data)
{
    Node* x = m_root;
    Node* y = NULL;
    Node* z = Node::create_node(key, data);
    while(x != NULL)
    {
        y = x;
        if(key < x->get_key())
        {
            x = x->get_left();
        }
        else
        {
            x = x->get_right();
        }
    }
    z->get_parent() = y; //error: non-lvalue in assignment
    if(y == NULL)
    {
        m_root = z;
    }
    else if(z->get_key() < y->get_key())
    {
        y->get_left() = z; //error: non-lvalue in assignment
    }
    else
    {
        y->get_right() = z; //error: non-lvalue in assignment
    }
}

最佳答案

如果您想使用 get_left() 等的返回作为赋值的目标,那么您必须返回一个引用。

然而,更大的错误是您出于某种原因将所有这些方法设为静态。这也行不通。

Node*& Node::get_left()
{
    return m_left;
}
Node*& Node::get_right()
{
    return m_right;
}
Node*& Node::get_parent()
{
    return m_parent;
}

但是既然重点是学习如何使用友元,你可能应该删除这些方法并将 BST 声明为 Node 的 friend ,让 BST 直接访问这些字段。这似乎是练习的重点。

关于c++ - 为二叉搜索树创建一个新节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20239518/

相关文章:

c++ - 使用迭代器遍历文件

c++ - 你如何访问 unique_ptr 的 vector

c - 解决指针转换警告

C 指针 : pointing to an array of fixed size

c++ - 如何将 ASCII 值转换为十六进制值并增加 char 指针?

c++ - 数据成员/代码指针偏移量

c++ - 如何测量在多核系统上运行的多个应用程序之间的消息延迟?

c++ - 查找所有唯一二叉搜索树的算法的时间复杂度是多少?

java - 自定义二叉搜索树中的最短路径

C-二叉搜索树