값이 없는 이진 트리
2816 단어 javascriptleetcode
이진 트리의 루트가 주어지면 주어진 트리가 단일 값이면 true를 반환하고 그렇지 않으면 false를 반환합니다.
예 1:
입력: 루트 = [1,1,1,1,1,null,1]
출력: 참
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {boolean}
*/
var isUnivalTree = function(root) {
const value = root.val;
return checkIfUnivalued(root, value);
};
const checkIfUnivalued = (root, value) => {
if (root === null) {
return true;
}
if (root && root.val !== value) {
return false;
}
return (
checkIfUnivalued(root.left, value) && checkIfUnivalued(root.right, value)
);
};
Reference
이 문제에 관하여(값이 없는 이진 트리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/univalued-binary-tree-3cpf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)