gpt4 book ai didi

c++ - 制作一棵n个 child 的树来存储计算机的目录

转载 作者:太空宇宙 更新时间:2023-11-04 11:58:40 26 4
gpt4 key购买 nike

我正在制作一棵 n 个 child 的树来存储计算机的目录。现在,概念就是简单地制作一棵树(当然不会是 BT)并且每个节点也会有子节点。考虑下面的代码,然后我将解释问题。首先考虑这个:

C/users/DeadCoder/Movies/Batman.

现在在我的 main.cpp 中,我将所有 C、用户、DeadCoder、电影、 bat 侠放在一个 vector 中,然后我在插入 Func 中发送两对。如果 root==NULL;它只会插入 C。下次 C 和用户会离开。它会找到 C,然后相应地插入用户。现在让我们看看代码。

template <class T>

struct Node;

template <class T>
class tree
{
Node<T> *root;

public:

tree();
~tree();
int insert(T str, T str1);
Node<T> *getRoot();
Node<T> *search(T item, Node<T> *tempPtr);
};

template <class T>
struct Node{

T n;
Node<T> *sibling;
tree<T> children; // SEE my each node has children.
Node(T N){
this->n = N;
this->sibling = NULL;
}

};

//在 .cpp 文件中;//初始化器

template <class T>
tree<T>::tree() // Constructor Initialization.
{
root=NULL;
}

//插入函数。

template <class T>
int tree<T>::insert(T push, T find)
{

Node<T> *rPtr = root;
if (rPtr==NULL){
//ROOT is NULL. C needs to be inserted which is in find.
Node<T> *pusPtr = new Node<T>(find);

root = pushPtr;
root->sibling=NULL;
return 0;
}
else if(rPtr!=NULL){
Node<T> *pushPtr = new Node<T>(push);
Node<T> *temp2 = search(find, root);
Node<T> *temp = temp2->children.getRoot(); // say it LINE_40.
if (temp==NULL){
temp = pushPtr;
temp->sibling=NULL;
return 1;

}
// children are already present.
else if(temp!=NULL){

// You don't need to know code for this part.
}
}//if.

//搜索函数。

template <class T>
Node<T> *tree<T>::search(T data, treeNode<T>* N)
{
if (N->n==data){ // where n represent directory.
return N; // data found.
}//if....
else{

Node<T> *child = N->children.getRoot();
// This is where i get Segmentation fault,
// because child is ==NULL; but you see in LINE_40 I did insert the child for C.


if(child!=NULL){ // say it line 80.
search(data, child);
}//if...
if(child->sibling!=NULL){
search(data, child->sibling);
}
}


}// search....

问题:插入了C用户 已插入。现在在第 80 行的搜索功能中,它找到了 C 的 child ,它应该是用户,因为我在第 40 行中插入了它。但是它说的是 child==NULL。我已经调试了几个小时,但我不知道为什么会这样说。我希望每个人都能解决问题。现在我真的需要知道为什么它认为 C child 是 NULL,它必须是用户。任何人都可以看到问题是什么吗????帮助 !!!!

最佳答案

第 42 行什么都不做(我的意思是它没有副作用)。它只是将一个值放在一个临时变量中然后离开。你可能想要你的 temp成为对根的引用。类似于:Node<T> *&temp =

关于c++ - 制作一棵n个 child 的树来存储计算机的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15065831/

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