TreeNode.h

 // Online C++ compiler to run C++ program online


#include <iostream>

#include <vector>

template <typename T>

class TreeNode {

    public:

    T data;

    vector <TreeNode<T>*> children;

    

    TreeNode(T data){

        this->data=data;

    }

}



Comments

Popular posts from this blog

Sum of Even Numbers till N

Find the Runner-Up Score!

Print All Substrings