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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:04:01+00:00 2026-05-30T19:04:01+00:00

I have a recursive algorithm for traversing nodes in a document tree in tree

  • 0

I have a recursive algorithm for traversing nodes in a document tree in tree order

How would this be made iterative? My attempt at making it iterative completely failed

function recursivelyWalk(nodes, cb) {
    for (var i = 0, len = nodes.length; i < len; i++) {
        var node = nodes[i],
            ret = cb(node)

        if (ret) {
            return ret
        }

        if (node.childNodes.length) {
            var ret = recursivelyWalk(node.childNodes, cb)
            if (ret) {
                return ret
            }
        }
    }
}
  • 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-30T19:04:02+00:00Added an answer on May 30, 2026 at 7:04 pm

    What about concatenating the child nodes if there are any, and using a while(nodes.length) loop? Basically, keep adding new nodes to the stack, and keep running the loop (testing one node each time) until the stack is empty: http://jsfiddle.net/gEm77/1/.

    var z = 0; // my precaution for a while(true) loop
    
    function iterativelyWalk(nodes, cb) {
        nodes = [].slice.call(nodes);
    
        while(++z < 100 && nodes.length) {
            var node = nodes.shift(),
                ret = cb(node);
    
            if (ret) {
                return ret;
            }
    
            if (node.childNodes.length) {
                nodes = [].slice.call(node.childNodes).concat(nodes);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this recursive code <ul> <% sql=SELECT * FROM cats ORDER BY orderid
I have following recursive algorithm needed to redactor into iterative process. CvSeq is a
I have a tail recursive pathfinding algorithm that I've implemented in JavaScript and would
I have a recursive algorithm which steps through a string, character by character, and
I have this recursive method which deletes empty folders: private void DeleteEmpty(DirectoryInfo directory) {
Imagine I have a recursive algebraic data type like this (Haskell syntax): data Expr
Welcome! I have a recursive public static method named less that takes a tree
I have written a recursive DFS algorithm to traverse a graph: void Graph<E, N>::DFS(Node
I have implemented a recursive algorithm, to improve the performance I want to add
I have given a tree like this: http://www.seqan.de/dddoc/html/streePreorder.png http://www.seqan.de/dddoc/html/streePreorder.png i can acces each node

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.