gpt4 book ai didi

具有 3 个结构值的 C++ 二叉树

转载 作者:行者123 更新时间:2023-11-28 04:41:21 26 4
gpt4 key购买 nike

所以我试图创建一个二叉搜索树来存储一个 ID (T value) 一个年龄 (int age) 和一个名字 (string) 每个位于树中的“气泡”,并按 ID 排序。

出于某种原因,我无法让我的代码将所有 3 个值正确存储为每个节点 1 个结构。我做错了什么吗?

这是我的代码。

#ifndef _TREE_GUARD 
#define _TREE_GUARD 1

#include <iostream>
#include <math.h>
using namespace std;

template <class T>
struct Node {
T value;
int age;
string name;
Node *left;
Node *right;

Node(T val) {
this->value = val;
}

Node(T val, int age, string name, Node<T> left, Node<T> right) {
this->value = val;
this->age = age;
this->name = name;

this->left = left;
this->right = right;
}
};

template <class T>
class BST {

private:
Node<T> *root;

void addHelper(Node<T> *root, T val) {
if (root->value > val) {
if (!root->left) {
root->left = new Node<T>(val);
}
else {
addHelper(root->left, val);
}
}
else {
if (!root->right) {
root->right = new Node<T>(val);
}
else {
addHelper(root->right, val);
}
}
}

void printHelper(Node<T> *root) {
if (!root) return;
printHelper(root->left);
cout << root->value << ' ';
cout << root->age << ' '; // ADDED
cout << root->name << ' '; //ADDED
printHelper(root->right);
}

int nodesCountHelper(Node<T> *root) {
if (!root) return 0;
else return 1 + nodesCountHelper(root->left) + nodesCountHelper(root->right);
}

int heightHelper(Node<T> *root) {
if (!root) return 0;
else return 1 + max(heightHelper(root->left), heightHelper(root->right));
}

void printMaxPathHelper(Node<T> *root) {
if (!root) return;
cout << root->value << ' ';
if (heightHelper(root->left) > heightHelper(root->right)) {
printMaxPathHelper(root->left);
}
else {
printMaxPathHelper(root->right);
}
}

bool deleteValueHelper(Node<T>* parent, Node<T>* current, T value) {
if (!current) return false;
if (current->value == value) {
if (current->left == NULL || current->right == NULL) {
Node<T>* temp = current->left;
if (current->right) temp = current->right;
if (parent) {
if (parent->left == current) {
parent->left = temp;
}
else {
parent->right = temp;
}
}
else {
this->root = temp;
}
}
else {
Node<T>* validSubs = current->right;
while (validSubs->left) {
validSubs = validSubs->left;
}
T temp = current->value;
current->value = validSubs->value;
validSubs->value = temp;
return deleteValueHelper(current, current->right, temp);
}
delete current;
return true;
}
return deleteValueHelper(current, current->left, value) ||
deleteValueHelper(current, current->right, value);
}

public:

void insert(T val) {
if (root) {
this->addHelper(root, val);
}
else {
root = new Node<T>(val);
}
}

void print() {
printHelper(this->root);
}

int nodesCount() {
return nodesCountHelper(root);
}

int height() {
return heightHelper(this->root);
}

void printMaxPath() {
printMaxPathHelper(this->root);
}

bool Delete(T value) {
return this->deleteValueHelper(NULL, this->root, value);
}
};
#endif

我使用这 3 个值和指向左右节点的指针创建了结构,但是,我的所有其他函数似乎都不适用于年龄和姓名值,只有 ID。这在我的 addprint 函数中最有问题。

我是 C++ 的新手,所以任何帮助都将不胜感激。

编辑:我假设我的问题出在附近的某个地方。代码运行得很好,但它没有将年龄和姓名添加到字符串中,而且我无法正确打印这些值,只能打印 ID

 Node<T> *root;

void addHelper(Node<T> *root, T val) {
if (root->value > val) {
if (!root->left) {
root->left = new Node<T>(val);
}
else {
addHelper(root->left, val);**
}
}
else {
if (!root->right) {
root->right = new Node<T>(val);
}
else {
addHelper(root->right, val);
}
}
}

这里

void printHelper(Node<T> *root) {
if (!root) return;
printHelper(root->left);
cout << root->value << ' ';
cout << root->age << ' '; // ADDED
cout << root->name << ' '; //ADDED
printHelper(root->right);
}

提前致谢!

最佳答案

root->left = new Node(val);

root->right = new Node(val);

似乎你创建了一个新节点,只给它一个“val”,没有年龄,没有名字等,所以它只有值。

编辑:我以前从未使用过"template",所以我花了一段时间才弄明白。无论如何...

解决方法:当你插入一个节点时,你需要复制所有的信息,而不仅仅是“值”,否则你只会得到“值”。

void addHelper(Node<T> *root, Node<T>* n) {
if (root->value > n->value) {
if (!root->left) {
root->left = new Node<T>(n->value,n->age,n->name,NULL,NULL);
}
else {
addHelper(root->left, n);
}
}
else {
if (!root->right) {
root->right = new Node<T>(n->value,n->age,n->name,NULL,NULL);
}
else {
addHelper(root->right, n);
}
}
}

也在“插入”中:

void insert(Node<T>* n) {
if (root) {
this->addHelper(root, n);
}
else {
root = new Node<T>(n->value,n->age,n->name,NULL,NULL);
}
}

您可以尝试其他几项以查看不同之处:

我会将 *root 初始化为 NULL,否则它可能是一些随机的东西,有时我会因此遇到段错误。

class BST {

private:
Node<T> *root=NULL;

如果您要插入的节点与已存在的节点具有相同的“值”,您会怎么做?您的程序只会将其添加到右侧。我不知道这是否是您想要的,但这就是它会做的。

我对此进行了测试并且有效。希望它也对您有用。

int main(){
BST<int> tree;
Node<int> node1(1,10,"test1",NULL,NULL);
Node<int> node2(5,50,"test2",NULL,NULL);
Node<int> node3(3,30,"test3",NULL,NULL);
Node<int> node4(3,30,"test4",NULL,NULL);
Node<int> node5(3,30,"test5",NULL,NULL);
Node<int> node6(8,80,"test5",NULL,NULL);
tree.insert(&node1);
tree.insert(&node2);
tree.insert(&node3);
tree.insert(&node4);
tree.insert(&node5);
tree.insert(&node6);
tree.print();
cout<<endl;
return 0;
}

输出:

1 10 test1 3 30 test3 3 30 test4 3 30 test5 5 50 test2 8 80 test5 

关于具有 3 个结构值的 C++ 二叉树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50126817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com