首页 > 其他 > 详细

965. Univalued Binary Tree

时间:2019-01-02 00:56:51      阅读:149      评论:0      收藏:0      [点我收藏+]

/**

965. Univalued Binary Tree
* https://leetcode.com/problems/univalued-binary-tree/description/

A binary tree is univalued if every node in the tree has the same value.  Return true if and only if the given tree is univalued.

*/

/**
* @param {TreeNode} root
* @return {boolean}
*/
var isUnivalTree = function(root) {
  let stack = [];

  let lastValue = -1;

  while (stack.length > 0 || root != null) {
    if (root != null) {
      stack.push(root);
      root = root.left;
    } else {
      root = stack.pop();
      if (lastValue != -1) {
        if (lastValue != root.val)
          return false;
      }
     lastValue = root.val;
     root = root.right;
    }
  }
  return true;

};

965. Univalued Binary Tree

原文:https://www.cnblogs.com/johnnyzhao/p/10206639.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!