Skip to content

Instantly share code, notes, and snippets.

View chai2champ's full-sized avatar

chaitrali chai2champ

View GitHub Profile
/* Binary tree - Level Order Traversal */
#include<iostream>
#include<queue>
using namespace std;
struct Node {
char data;
Node *left;
Node *right;
};