Skip to content

Instantly share code, notes, and snippets.

@thmain
Created December 25, 2022 05:30
Show Gist options
  • Save thmain/5ca4605dde8d439ea5e1dfccca04e3a1 to your computer and use it in GitHub Desktop.
Save thmain/5ca4605dde8d439ea5e1dfccca04e3a1 to your computer and use it in GitHub Desktop.
const printNodesAtLevelK = (root, k) => {
if (root === NULL) {
return;
}
if (k === 0) {
console.log(`Node at Level k = ${root.data}`);
return;
} else {
printNodesAtLevelK(root.left, k-1);
printNodesAtLevelK(root.right, k-1);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment