Created
December 25, 2022 05:30
-
-
Save thmain/b6d45557d18b5549aaad78f78a560bbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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