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

  • Home
  • SEARCH
  • 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 8815275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:20:06+00:00 2026-06-14T04:20:06+00:00

I have a data structure that is a tree, where each parent can have

  • 0

I have a data structure that is a tree, where each parent can have unlimited number of children, and the max depth of the tree is 4. Each level is a different class.

My friend has written an algorithm to traverse this is made up of for loops, the psuedocode is below:

root = tree.root();
for (int i = 0; i < root.children_size(); i++)
    child1 = root.child(i);
    for(int j = 0; j < child1.children_size(); j++)
        child2 = child1.child(j);
        for(int k = 0; k < child2.children_size(); k++)
            child3 = child2.child(k);

He claims that because this has 3 for loops, the run time of this algorithm is O(n3). When I ask him what n is, he said is the number of for loops, which doesn’t make sense, because n has to be a structure within this tree.
I claim n is the number of overall nodes in the tree and the run time of this algorithm is O(n), because the run time will be O(root.children_size + child1.children_size + child2.children_size).

Is my assumption about the run time correct, O(n), or is my friends, O(n^3)?

  • 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-14T04:20:08+00:00Added an answer on June 14, 2026 at 4:20 am

    Yes you are right . You are actually employing depth first search,which visits each node exactly once (i.e. worst case of a dfs) , hence complexity is O(N) .As far as your friend is concerned, I cant understand what he denotes by n because the depth(that is the number of for loops) here is fixed .

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

Sidebar

Related Questions

I'm putting together a database structure that can hold data for courses. Each course
I have a RuleTree data structure which represents a tree of rules that are
I have to design a data structure that is to be used in a
If I have a requirement to create a data structure that has the following
I have a problem here that requires to design a data structure that takes
I have a JSON-like data structure (which I don't want to change) that is
I have the need to use a Stack-like data structure for a program that
I have a table that contains some data given below. It uses a tree
I have a AVL tree data structure, where every node has its own lock.
I have a data-structure (in plist) that looks something like this: What i have

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.