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 8746061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:08:10+00:00 2026-06-13T12:08:10+00:00

Complete binary tree: A complete binary tree is a binary tree in which every

  • 0

Complete binary tree: A complete binary tree is a binary tree in which every level, except possibly the last, is completely filled, and all nodes are as far left as possible.

How to: traverse in order recursively a tree like this?

    1
  2   3
4  5 

Where 2 and 3 is a node of 1 and 4 and 5 is a node of 2.

  • 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-06-13T12:08:11+00:00Added an answer on June 13, 2026 at 12:08 pm

    For tree-traversal there are basically 3 algorithms

    Preorder, Inorder and Postorder

    void inorder(root_node)
    {
        if(root_node != null)
        {
            inorder(root_node->left);
            println(root_node->value);
            inorder(root_node->right);
        }
    }
    

    Output: 4 2 5 1 3

    You can refer this link for more details.

    EDIT:

    To answer your question (in comments section), If you want to traverse all the nodes acc. to their level in tree, you should use graph traversal algorithms. in your case it’ll be BFS – Breadth First Search.

    (Note: tree is also a kind of graph)

    See here for details.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my code. The complete binary tree has 2^k nodes at depth k.
1) Given 2 arrays containing elements of a complete Binary tree(level by level), without
I read about binary search trees that if it is a complete tree (all
assume I have a complete binary tree up-to a certain depth d . What
Consider the following array, which is claimed to have represented a binary tree: [1,
Assuming a complete binary tree, each node can be adressed with the position it
I need to build a binary tree from a preorder bitstring (which is piped
I am trying to create a complete binary tree using a linked list, instead
This is not a homework. Just an interesting task :) Given a complete binary
I'm new to all things shell/binary, and was installing Git (I understand SCM is

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.