Click here to Skip to main content
15,861,125 members
Articles / Programming Languages / Objective C

Tree Data Class for C++

Rate me:
Please Sign up or sign in to vote.
4.61/5 (14 votes)
12 Jan 20022 min read 214.6K   3.6K   51   7
Simple class to represent tree data structures in C++

Introduction

Not so long ago in one of my recent projects, I needed a tree class for representing data structures. I looked all over the web and didn't find any acceptable solution. A tree is a structure which is not as simple as an array or list, so unfortunately STL comes without it and I had to write one myself.

I divided the implementation on two main parts: Data and Node. Data object is responsible for holding the data, and the Node (Tree) for the tree structure.

Data Objects

The purpose of the Data class is to keep the actual data. It keeps the data until all actual references to it are dead. This is done with reference counting (COM like). I know somebody may find this worthless and useless, but it makes the data more capsulated and secure. The implementation is divided in two classes, Data and Ref (reference). All the data is stored in the Data class. All the job is done by Ref class, which manipulates the data class:

C++
template <class Type> class Data {
private:
...// all methods and variables are private
   friend class Ref<Type>; // Ref class will manipulate us
};
template <class Type> class Ref {
    Ref(Type *p);
    Ref();
    Ref(const Ref<Type> rhs);
    //destructor
    virtual ~Ref();

//operators =
    Ref operator=(const Ref<Type> rhs);
    Ref operator=(const Type t);
    Ref operator=(Type *p); 
// operator ==
    bool operator==(const Ref<Type> rhs) 
// misc

    Ref Clone();
    void Release();
    bool IsNull();

// accessors to the actual data 
// (check if it's null first)
    Type *operator->();
    Type get_Data();
    operator Type();
}

Tree(Node) Object

Tree class represents a node in the tree, so it has parent and it has children. in this way, I use a single class for representing a node and a tree, so the tree is a node without parent, and leaf is a node without children. It also has reference (Ref) to the data. Its implementation is divided between two classes, NodeData and Tree. NodeData objects holds the actual data for the parent and the children, but Tree object manipulates this data and gives access to them. Actually, you'll always use only Tree class directly.

Definitions:

  • Node - a node or leaf in the tree (can be root node as well)
  • Leaf - a node without children nodes
  • Root - a node without parent node (we'll reference it as a Tree as well)
  • Null - null node
C++
template <class Type> class NodeData {
private:
    .... // all methods  vars are private
    friend class Tree<Type>;
}

template <class Type> class Tree {
public:
    // we'll call the tree node
    typedef Tree<Type> Node;
    
    // parent
    Node Parent();
    
    // children - Nodes
    __declspec( property( get=get_Nodes) ) Node Nodes[];
    __declspec( property( get=get_Count) ) int Count;

    Node get_Nodes(int nIndex);
    int get_Count();
    
    // data acess
    __declspec( property( get=get_Data) ) Ref<Type> Data;

    operator Type();
    Type *operator->();
    Ref<Type> get_Data();

    // node functions (isLeaf and so on
    bool IsLeaf();
    bool IsNode();
    bool IsRoot();

    // comparision
    bool operator == (const Node rhs)
          { return *(NodeBase*)this==(NodeBase )rhs;};

    // node operations
    Node AddNode(const Type t); 
    void Delete();
    void DeleteNode(int nIndex);
    void DeleteNode(Node node);

    // constructors
    Tree(const Type Data);
    Tree(Type *Data);
    
    Tree();
    Tree(const Tree<Type> rhs);
    Tree(const NodeBase rhs);
    
    // destructor
    virtual ~Tree();
}

Very Simple Usage Example

C++
#include "stdio.h"
#include "tree.h"
#include "string"

using namespace std;

typedef Tree<string> StringTree;
 typedef
StringTree::Node StringNode; //


recursive function for prionitng nodes void
PrintNode(StringNode node,int nLevel) { //
	print new line fputs("\n",stdout);
	//
	print spaces for indent (2 for every level) string
	s; s.resize(nLevel*2,'
	'); fputs(s.c_str(),stdout);
	//

	print the value fputs(node.get_Data()->c_str(),stdout);
	//

	iterate through children nLevel++;
	for(int
	n= 0;n<&;node.Count;n++) {
		PrintNode(node.Nodes[n],nLevel);
	}
}

int main(int argc, char* argv[])
{
	// define the tree
	StringTree tree; 
	((string&)tree)="Root";

	//add few nodes
	StringNode node=tree;

	node.AddNode("1").AddNode("11");
	StringNode node2=node.AddNode("2");

	node2.AddNode("21").AddNode("211");
	node2.AddNode("22");
	node2.AddNode("23");
	
	node.AddNode("3");

	// print the tree
	PrintNode(tree,0);

	// wait for enter
	char buf[3];
	fputs("\nPress ENTER :",stdout);
	fgets(buf,3,stdin);
	return 0;
}

Conclusion

The presented Tree class is not the best solution, and is also not the best performer since it uses vector internally, but is flexible and easy to use. In most of the available Tree structures, you'll find that we require direct work with pointers, and a lot of code to be filled and indexed. This one is very easy to use (with the price for this of course).

Please let me a note below if you have comments and opinions.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralOther tree data class Pin
john.double26-Dec-09 10:41
john.double26-Dec-09 10:41 
Generalthanks a lot Pin
scu064311110816-Dec-08 1:40
scu064311110816-Dec-08 1:40 
GeneralHello! Help me... Pin
ZoTiger28-Dec-07 19:00
ZoTiger28-Dec-07 19:00 
GeneralUpdating exisiting nodes Pin
freddy198113-Apr-06 18:39
freddy198113-Apr-06 18:39 
GeneralThe demo software doesnt work Pin
4-Jul-02 8:33
suss4-Jul-02 8:33 
GeneralUsing STL for imlementing trees Pin
Martin Holzherr14-Jan-02 2:21
Martin Holzherr14-Jan-02 2:21 
GeneralRe: Using STL for imlementing trees Pin
Mihail23-Oct-03 3:07
Mihail23-Oct-03 3:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.