Skip to content

Instantly share code, notes, and snippets.

View rajivseelam's full-sized avatar

Rajiv Seelam rajivseelam

View GitHub Profile
@rajivseelam
rajivseelam / bstwithlot.c
Created September 7, 2012 09:20
Binary Search Tree with Level Order Traversal
#include<stdio.h>
#include<stdlib.h>
/*********************** TREE ************************/
typedef struct _tnode{
int value;
struct _tnode *left;
struct _tnode *right;
} tnode;