Skip to content

Instantly share code, notes, and snippets.

View loben-illimited's full-sized avatar

loben-illimited

View GitHub Profile
#include <iostream>
#include <sstream>
#include <vector>
#include <queue>
using namespace std;
typedef struct tree{
int val = -1;
tree *left = NULL;
tree *right = NULL;