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
1 Posted Topic
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 …
The End.
Sarburtho