Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~178 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for souphmars

you want to get the output in preorder so you can use this code [code]#include<stdio.h> #include<iostream.h> #include<conio.h> #define max 20 class tree; class node { int data; node *left,*right; friend class tree; }; class tree { node *root; public: void rcreate(int item) { rrcreate(root,item); } void rrcreate(class node*,int item); void …

Member Avatar for Sarburtho
0
178

The End.