- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
class TreeNode {
constructor(val) {
this.val = val
this.left = this.right = null
}
}
const isSymmetric = root => {
if (!root) return true
let stackP = []
let stackQ = []
let currentP = root
let currentQ = root
while ((currentP && currentQ) || (stackP.length && stackQ.length)) {
while (currentP) {
stackP.push(currentP)
currentP = currentP.left
}
while (currentQ) {
stackQ.push(currentQ)
currentQ = currentQ.right
}
console.log(stackP, stackQ, 'after push')
currentP = stackP.pop()
currentQ = stackQ.pop()
console.log(stackP, stackQ, 'after 1 iterative pop')
if ((currentP.val !== currentQ.val) || (stackP.length !== stackQ.length)) return false
console.log(currentP, currentQ, 'after if statement')
// confused as to why we are setting it to the opposite here
currentP = currentP.right
currentQ = currentQ.left
console.log(currentP, currentQ, 'after opp DECLARATION')
}
return true
}
//example 1
const tree1 = new TreeNode(1)
tree1.left = new TreeNode(2)
tree1.right = new TreeNode(2)
tree1.left.left = new TreeNode(3)
tree1.left.right = new TreeNode(4)
tree1.right.left = new TreeNode(4)
tree1.right.right = new TreeNode(3)
//example 2
const tree2 = new TreeNode(1)
tree2.left = new TreeNode(2)
tree2.right = new TreeNode(2)
tree2.left.right = new TreeNode(3)
tree2.right.right = new TreeNode(3)
console.log(isSymmetric(tree1));
console.log(isSymmetric(tree2));
但是,我对以下两行感到困惑:
currentP = currentP.right
currentQ = currentQ.left
我不知道为什么要这样做。我尝试跟随控制台日志记录,但无法跟随。我希望 currentP
能够遵循设置在左侧的原始模式来维持自身,但在弹出 P
和 Q
后,它们似乎是现在向右移动。我不明白为什么。谁能解释一下吗?
假设我们有以下树
A
/ \
B B
/ \ / \
C D D C
跟踪currentP
和currentQ
应该给出以下值A、B、C、C、null、B、D、null、A。但是当我们到达A时从逻辑上看,我们似乎处于无限循环中。除非我没有正确跟踪它。在我们将 currentP
和 currentQ
声明为“A”之后,我们应该再次进入 while 循环,本质上是再次将 B 和 C 推回去,我是否错过了什么?
最佳答案
给定这棵树:
A
/ \
B C
/ \ / \
D E F G
首先,它一直向左(stackP = B,D)堆叠它们,然后向右(stackQ = C,G)。然后比较最后的叶子(D,G)。然后拿他们的 sibling (E,F)进行比较 - 这就是您正在谈论的部分。然后弹出他们的 parent (B,C)并进行比较。
这是带有一些调试信息的程序,可以让您更好地了解它正在做什么:
class TreeNode {
constructor(val) {
this.val = val;
this.left = this.right = null;
}
}
function serialize(arr) {
return arr.map(e => e.val).join(",");
}
const isSymmetric = (root) => {
if (!root) return true;
let stackP = [];
let stackQ = [];
let currentP = root;
let currentQ = root;
while ((currentP && currentQ) || (stackP.length && stackQ.length)) {
while (currentP) {
stackP.push(currentP);
console.log(`Pushing ${currentP.val} to sP=[${serialize(stackP)}]`)
currentP = currentP.left;
}
while (currentQ) {
stackQ.push(currentQ);
console.log(`Pushing ${currentQ.val} to sQ=[${serialize(stackQ)}]`)
currentQ = currentQ.right;
}
currentP = stackP.pop();
currentQ = stackQ.pop();
console.log(`Comparing cP=${currentP.val} cQ=${currentQ.val} sP=[${serialize(stackP)}] sQ=[${serialize(stackQ)}]`);
if (currentP.val !== currentQ.val || stackP.length !== stackQ.length)
return false;
// confused as to why we are setting it to the opposite here
currentP = currentP.right;
currentQ = currentQ.left;
console.log(`Looping cP=${currentP ? currentP.val : "null"} cQ=${currentQ ? currentQ.val : "null"} sP=[${serialize(stackP)}] sQ=[${serialize(stackQ)}]`);
}
return true;
};
//example 1
const tree1 = new TreeNode(1)
tree1.left = new TreeNode(2)
tree1.right = new TreeNode(2)
tree1.left.left = new TreeNode(3)
tree1.left.right = new TreeNode(4)
tree1.right.left = new TreeNode(4)
tree1.right.right = new TreeNode(3)
//example 2
const tree2 = new TreeNode(1)
tree2.left = new TreeNode(2)
tree2.right = new TreeNode(2)
tree2.left.right = new TreeNode(3)
tree2.right.right = new TreeNode(3)
console.log(isSymmetric(tree1));
console.log(isSymmetric(tree2));
关于javascript - 我正在寻找检查树是否对称的迭代解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61112735/
我只是想知道要安装哪个版本的 Visual Studio 2010(专业版或高级版)提示升级项目.. 项目包括:asp.net mvc、数据库和silverlight。 最佳答案 通常,由不同版本的相
几种通过 iproute2 来打通不同节点间容器网络的方式 几种通过 iproute2 来打通不同节点间容器网络的方式 host-gw ipip vxlan 背景 之前由于需
目录 前言 1、TypeHandler 简介 1.1转换步骤 1.2转换规则 2、JSON 转换 3、枚举转换 4、文章小结
目录 前言 1、常见 key-value 2、时效性强 3、计数器相关 4、高实时性 5、排行榜系列 6、文章小结 前言 在笔者 3 年的
目录 前言 四、技术选型 五、后端接口设计 5.1业务系统接口 5.2App 端接口 六、关键逻辑实现 6.1Red
目录 前言 一、需求分析 1.1发送通知 1.2撤回通知 1.3通知消息数 1.4通知消息列表 二、数据模型设计
目录 前言 一、多租户的概念 二、隔离模式 2.1独立数据库模式 2.2共享数据库独立数据架构 2.3共享数据库共享数据架构
导读: 虽然锁在一定程度上能够解决并发问题,但稍有不慎,就可能造成死锁。本文介绍死锁的产生及处理。 死锁的产生和预防 发生死锁的必要条件有4个,分别为互斥条件、不可剥夺条件、请求与保持条件和循环等待条
在浏览网页后,我找不到任何功能来执行此操作,我有可行的个人解决方案。也许它对某人有用。 **使用 Moment 插件转换日期。***moment(currentPersianDate).clone()
是否有一种解决方案可以很好地处理数字(1-10)手写?我试过tesseract,但我得到的只是垃圾。 理想情况下是 OSS,但商业也可以。 最佳答案 OpenCV 现在带有手写数字识别 OCR 示例。
在服务器应用程序上,我们有以下内容:一个称为 JobManager 的单例类。另一个类,Scheduler,不断检查是否需要向 JobManager 添加任何类型的作业。 当需要这样做时,调度程序会执
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
当您尝试从 GitHub 存储库安装某些 R 包时 install_github('rWBclimate', 'ropensci') 如果您遇到以下错误: Installing github repo
问题在以下链接中进行了描述和演示: Paul Stovell WPF: Blurry Text Rendering www.gamedev.net forum Microsoft Connect: W
我正在寻找一种解决方案,使用标准格式 a × 10 b 在科学记数法下格式化 R 中的数字。一些同行评审的科学期刊都要求这样做,并且手动修改图表可能会变得乏味。 下面是 R 标准“E 表示法”的示例,
已编辑解决方案(如下...) 我有一个启动画面,它被打包到它自己的 jar 中。它有效。 我可以通过以下方式从另一个 java 应用程序内部调用 Splash.jar: Desktop.getDesk
什么是创建像 PageFlakes 或 iGoogle 这样的门户网站的好框架/包? ?我们希望创建一个为员工提供 HR 服务的员工/HR 门户,但我们也需要一种足够灵活的产品,以便我们可以使用它来为
我正在寻找一种解决方案,使用标准格式 a × 10 b 在科学记数法下格式化 R 中的数字。一些同行评审的科学期刊都要求这样做,并且手动修改图表可能会变得乏味。 下面是 R 标准“E 表示法”的示例,
如何将 solr 与 heritrix 集成? 我想使用 heritrix 归档一个站点,然后使用 solr 在本地索引和搜索该文件。 谢谢 最佳答案 使用 Solr 进行索引的问题在于它是一个纯文本
完整日历不包含工作时间功能选项(在任何一天的议程 View 中选择第一行和最后一行 - 例如公司不工作)。我做到了类似的事情: viewDisplay: function(view){
我是一名优秀的程序员,十分优秀!