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
~181 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for tnecniv

Hi, is it possible to construct a pre order binary tree? i know how to do a pre order traversal. but constructing a binary tree using that i am not sure what it mean? what is the purpose of doing a pre order construction of binary treE?? please advise

Member Avatar for Mouche
0
80
Member Avatar for tnecniv

Hi all i need some help in my merge sorting [code] class Database { protected: struct data { string pName; string pCat; int pBarcode; double pPrice; string pMan; int pStock; int pSold; data *next; };//struture of product } [/code] [code] void Database::topX(int number,data output[]){ data *cur=_head; data* *sorted=new data*[_n];// new …

Member Avatar for tnecniv
0
101