Skip to content

Instantly share code, notes, and snippets.

View norielsantiago1990's full-sized avatar

norielsantiago1990

View GitHub Profile
#include <string>
#include <sstream>
#include <iostream>
struct node
{
node( const std::string& d, node* lc, node* rc )
: data(d), left_child(lc), right_child(rc) {}
~node() { delete left_child ; delete right_child ; }