Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c x 2
c++ x 2

2 Posted Topics

Member Avatar for rabbit337

//Complete Binary Tree... //Leaf nodes as left as possible and ... //All levels except last must be full... //Queue is used for insertion in Tree... //Queue implemented as Circular Queue... #include<iostream.h> class node; class queue { node** q; int max; int front,rear; public: queue() { front=-1; rear=-1; max=10; q=new (node*)[10]; …

Member Avatar for sonu_1
0
1K
Member Avatar for pankaj.leon

> WE'll be taking inorder traversal of the tree and during the traversal will modify the right pointers only(using method "make_right") such that a linked list is formed having only valid right pointers. Then another method "make_left" is called to make the left pointers of the nodes point to valid …

Member Avatar for pankaj.leon
0
205

The End.