Skip to content

Instantly share code, notes, and snippets.

@verdi327
Created July 2, 2019 14:43
Show Gist options
  • Save verdi327/fbcd098921ea2464e500d1266e3e6e1a to your computer and use it in GitHub Desktop.
Save verdi327/fbcd098921ea2464e500d1266e3e6e1a to your computer and use it in GitHub Desktop.
dfs-preorder.js
preOrder(result=[]) {
if (!this.left && !this.right) {
return result.push(this.key);
}
result.push(this.key);
if (this.left) {
this.left.preOrder(result);
}
if (this.right) {
this.right.preOrder(result);
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment