中实现N元树的源代码

中实现N元树的源代码

本文介绍了请帮助我获得在C ++中实现N元树的源代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的朋友
我在senario中可以有很多子节点到父节点,而且子节点可以有多个节点

我需要具有插入和搜索功能的代码.

请帮助

Dear Friends
I have senario where I can have many child node to the parent node and also the child node can have multiple number of node

I need to have the code to insert and search function.

Please help

推荐答案


struct node
{
    struct node* parent;
    int number_of_sons;
    struct node* sons;
    int data_int;
    // char[64] data_str;
    // void* data_ptr;
}



现在,您必须实现:



Now, you have to implement:

int insert_tree(int data)
{
}





and

struct node* search_tree(int data)
{
}



这篇关于请帮助我获得在C ++中实现N元树的源代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 03:21