Skip to content

Instantly share code, notes, and snippets.

@eldilibra
Created October 21, 2014 18:37
Show Gist options
  • Save eldilibra/c2eb54bc2415095ea7bd to your computer and use it in GitHub Desktop.
Save eldilibra/c2eb54bc2415095ea7bd to your computer and use it in GitHub Desktop.
function iterativeTreeTraversal (rootNode) {
var visited = [rootNode]; //arrays act like stacks in js if you only use push and pop
var currentNode;
while (visited.length) {
currentNode = visited.pop();
currentNode.children.forEach(function (child) {
visited.push(child);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment