Skip to content

Instantly share code, notes, and snippets.

@thmain
Created December 25, 2022 05:30
Show Gist options
  • Save thmain/b6d45557d18b5549aaad78f78a560bbc to your computer and use it in GitHub Desktop.
Save thmain/b6d45557d18b5549aaad78f78a560bbc to your computer and use it in GitHub Desktop.
function deleteTree (root) {
let temp = [];
while (temp) {
let node = temp.pop();
if (node.left) temp.push(node.left);
if (node.right) temp.push(node.right);
deleteNode(node);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment