Skip to content

Instantly share code, notes, and snippets.

View PrashantBisht's full-sized avatar
💭
I may be slow to respond.

Prashant Bisht PrashantBisht

💭
I may be slow to respond.
View GitHub Profile
@PrashantBisht
PrashantBisht / PreorderInorderPostorder_CPP.cpp
Last active September 9, 2015 09:03 — forked from mycodeschool/PreorderInorderPostorder_CPP.cpp
Binary tree traversal: Preorder, Inorder, Postorder
/* Binary Tree Traversal - Preorder, Inorder, Postorder */
#include<iostream>
using namespace std;
struct Node {
char data;
struct Node *left;
struct Node *right;
};