반응형
https://leetcode.com/problems/delete-leaves-with-a-given-value
재귀적으로 풀 수 있었습니다.
각 노드가 leaf node이고 val == target이라면 NULL을 반환하고, 상위 노드는 해당 값으로 업데이트합니다.
class Solution {
public:
TreeNode* removeLeafNodes(TreeNode* root, int target) {
if(!root) return NULL;
root->left = removeLeafNodes(root->left, target);
root->right = removeLeafNodes(root->right, target);
if(!root->left && !root->right && root->val == target) {
return NULL;
}
return root;
}
};
반응형
'Algorithm' 카테고리의 다른 글
LeetCode 409. Longest Palindrome (0) | 2024.06.08 |
---|---|
LeetCode 2331. Evaluate Boolean Binary Tree (0) | 2024.05.18 |
LeetCode 979. Distribute Coins in Binary Tree (0) | 2024.05.18 |
LeetCode 2487. Remove Nodes From Linked List (0) | 2024.05.06 |
LeetCode 237. Delete Node in a Linked List (0) | 2024.05.05 |