Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7042991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:13:59+00:00 2026-05-28T02:13:59+00:00

I am implementing a tree which is a Binary Expression Tree. The leaf nodes

  • 0

I am implementing a tree which is a Binary Expression Tree. The leaf nodes are numbers, non-leaf nodes are math operators. Succesfully implemented printInorder,PostOrder, PreOrder, evaluate. But stucked with the printLevel().

Here is my int main ()

int main()
{
    EXTree myTree;
    string tests[] = {"2.1*3.1+4.2", "(2.0+1.3)/1.4", "2.*(1.3+1.4)","1.2*(1.3+1.4/0.5)","1.2*(1.3+1.4/0.5)-4.4", "1.2*(1.3+1.4/0.5)- (9/3)"};
    for (int i=0; i < 6; i++)
    {
        myTree.build (tests[i]);
        myTree.printInorder();
        myTree.printPreorder();
        myTree.printPostorder();
        myTree.printLevel(); //Starting from level = 0
        cout << "Evaulating myTree = " << format(myTree.evaluate(),2) << endl;
        myTree.removeAll(); // removes all the nodes
    }
}

printLevel(); only prints the level of the tree given above and its initally 0.

and here is my printLevel function.

void EXTree:: printLevel()
{
    queue<Node*> levelq;

    levelq.push(root);
    cout << "Current Level is: ";
    while( levelq.size() > 0 )
    {
        Node *cur = levelq.front();
        cout << cur->Root << "  ";
        levelq.pop();
        if (cur->Left)  levelq.push(cur->Left);
        if (cur->Right) levelq.push(cur->Right);
    }
    cout << endl;
}

But I really didnt understand how to implement the printLevel. Appreciate for any help to clarify it.

I just implemented the inOrder algorith to my printLevel and tried to change it but still didnt get it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:14:00+00:00Added an answer on May 28, 2026 at 2:14 am

    Since you have no problem with recursion, this would work without queue:

    void EXTree:: printLevel()
    {
        int currentLevel = 0;
        if (root)
        {
            cout << "Current Level is: ";
            printLevelHelper(root,currentLevel);
        }
        else
            cout << "This BST is Empty\n";
    }
    
    // Declare a private method:
    void EXTree:: printLevelHelper(Node* &n, int &currentLevel)
    {
        cout << currentLevel << ' ';
        if (n->Left)
        {
            currentLevel++;
            printLevelHelper(n->Left,currentLevel);
            currentLevel--;
        }
        if (n->Right)
        {
            currentLevel++;
            printLevelHelper(n->Right,currentLevel);
            currentLevel--;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am currently implementing a binary tree in c++ and i want to traverse
Im implementing a B-tree in C++,I have a stack which saves pairs . my
I'm implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving
I'm writing a Java Tree in which tree nodes could have children that take
I need to build a binary tree from a preorder bitstring (which is piped
(Using Java) I am implementing a generic class which is a B-Tree. When the
I have been implementing binary tree search algorithm recently in R, and before that
I am implementing a tree think of it as a folder structure so I
I am implementing a tree browser in HTML. On clicking a node, I call
I'm currently implementing a very complex tree structure to allow for near-instant data access,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.