202 lines
7.6 KiB
HTML
202 lines
7.6 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="zh-Hans">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>041. 二叉树的层序遍历 – 图解</title>
|
|||
|
|
<link rel="stylesheet" href="../shared/style.css">
|
|||
|
|
<style>
|
|||
|
|
/* page-specific overrides */
|
|||
|
|
.vis-area { min-height: 120px; padding: 16px 0; }
|
|||
|
|
.code-section { margin-top: 16px; }
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="container">
|
|||
|
|
<h1>🟡 041. 二叉树的层序遍历 <span class="badge medium">中等</span></h1>
|
|||
|
|
<p class="subtitle">分类:二叉树 | LeetCode Hot 100</p>
|
|||
|
|
|
|||
|
|
<!-- 控制面板 -->
|
|||
|
|
<div class="controls" id="controls">
|
|||
|
|
<label for="inputArea">输入:</label>
|
|||
|
|
<input type="text" id="inputArea" placeholder="默认示例,可自定义">
|
|||
|
|
<button id="applyBtn" class="primary">生成图解</button>
|
|||
|
|
<select id="exampleSelect"></select>
|
|||
|
|
<span style="flex:1"></span>
|
|||
|
|
<button id="prevBtn">◀ 上一步</button>
|
|||
|
|
<button id="nextBtn">下一步 ▶</button>
|
|||
|
|
<button id="jumpBtn">⏭ 跳到结果</button>
|
|||
|
|
<button id="autoBtn">自动播放</button>
|
|||
|
|
<button id="resetBtn">重置</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- 步骤流水线 -->
|
|||
|
|
<div class="pipeline" id="pipeline"></div>
|
|||
|
|
|
|||
|
|
<!-- 提示条 -->
|
|||
|
|
<div class="hint info" id="hintBox">
|
|||
|
|
<span id="stepInfo"></span><br>
|
|||
|
|
<span id="hintText"></span>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- 可视化面板 -->
|
|||
|
|
<div class="panels">
|
|||
|
|
<div class="panel" id="mainPanel">
|
|||
|
|
<h3>📊 可视化</h3>
|
|||
|
|
<div class="vis-area" id="vizArea">点击「生成图解」开始</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="panel-grid">
|
|||
|
|
<div class="panel" id="detailPanel">
|
|||
|
|
<h3>📝 当前步骤详情</h3>
|
|||
|
|
<div id="detailContent">等待开始...</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="panel" id="resultPanel">
|
|||
|
|
<h3>✅ 结果</h3>
|
|||
|
|
<div id="resultContent">等待完成...</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- 代码 -->
|
|||
|
|
<div class="panel code-section">
|
|||
|
|
<h3>💻 参考代码(Python)</h3>
|
|||
|
|
<div id="codeArea"></div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<footer>Powered by QwenPaw · 图解算法 · LeetCode Hot 100</footer>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<script src="../shared/algo-viz.js"></script>
|
|||
|
|
<script>
|
|||
|
|
"use strict";
|
|||
|
|
(function() {
|
|||
|
|
// ========== Algorithm Logic ==========
|
|||
|
|
|
|||
|
|
function arrayToTree(arr) {
|
|||
|
|
if (!arr || arr.length === 0) return null;
|
|||
|
|
let idCtr = 0;
|
|||
|
|
const nodes = arr.map(v => v === null ? null : {val: v, left: null, right: null, _id: 'n' + (idCtr++)});
|
|||
|
|
for (let i = 0; i < nodes.length; i++) {
|
|||
|
|
if (!nodes[i]) continue;
|
|||
|
|
const li = 2*i+1, ri = 2*i+2;
|
|||
|
|
if (li < nodes.length) nodes[i].left = nodes[li];
|
|||
|
|
if (ri < nodes.length) nodes[i].right = nodes[ri];
|
|||
|
|
}
|
|||
|
|
return nodes[0];
|
|||
|
|
}
|
|||
|
|
function treeToArray(root) {
|
|||
|
|
if (!root) return [];
|
|||
|
|
const res = [], q = [root];
|
|||
|
|
while (q.length) {
|
|||
|
|
const n = q.shift();
|
|||
|
|
if (n === null) { res.push(null); continue; }
|
|||
|
|
res.push(n.val); q.push(n.left, n.right);
|
|||
|
|
}
|
|||
|
|
while (res.length && res[res.length-1] === null) res.pop();
|
|||
|
|
return res;
|
|||
|
|
}
|
|||
|
|
function deepClone(node) {
|
|||
|
|
if (!node) return null;
|
|||
|
|
return {val: node.val, _id: node._id, left: deepClone(node.left), right: deepClone(node.right)};
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const examples = [
|
|||
|
|
{tree: [3,9,20,null,null,15,7], label: '示例1: [3,9,20,null,null,15,7]'},
|
|||
|
|
{tree: [1], label: '示例2: [1]'},
|
|||
|
|
{tree: [], label: '示例3: []'},
|
|||
|
|
];
|
|||
|
|
let root, steps, stepCtrl;
|
|||
|
|
|
|||
|
|
function buildSteps(arr) {
|
|||
|
|
root = arrayToTree(arr);
|
|||
|
|
steps = [];
|
|||
|
|
if (!root) { steps.push({stage:'done',hl:{},queue:[],result:[],msg:'空树,返回 []'}); return; }
|
|||
|
|
|
|||
|
|
const queue = [root]; const result = []; let level = 0;
|
|||
|
|
steps.push({stage:'init',hl:{},queue:[root.val],result:[],msg:'初始化队列,根节点入队'});
|
|||
|
|
|
|||
|
|
while (queue.length) {
|
|||
|
|
const size = queue.length;
|
|||
|
|
const levelVals = [];
|
|||
|
|
const levelNodes = [];
|
|||
|
|
steps.push({stage:'start_level',hl:{},queue:queue.map(n=>n.val),result:JSON.parse(JSON.stringify(result)),msg:`开始处理第 ${level} 层,本层 ${size} 个节点`});
|
|||
|
|
|
|||
|
|
for (let i = 0; i < size; i++) {
|
|||
|
|
const node = queue.shift();
|
|||
|
|
levelVals.push(node.val);
|
|||
|
|
levelNodes.push(node);
|
|||
|
|
const hl = {[node._id]:'current'};
|
|||
|
|
levelNodes.forEach((n,j) => { if (j < levelVals.length-1) hl[n._id] = 'visited'; });
|
|||
|
|
if (node.left) queue.push(node.left);
|
|||
|
|
if (node.right) queue.push(node.right);
|
|||
|
|
steps.push({stage:'visit',hl,queue:queue.map(n=>n.val),result:JSON.parse(JSON.stringify(result)),msg:`访问节点 ${node.val}`});
|
|||
|
|
}
|
|||
|
|
result.push(levelVals);
|
|||
|
|
const hl2 = {}; levelNodes.forEach(n => hl2[n._id] = 'visited');
|
|||
|
|
steps.push({stage:'end_level',hl:hl2,queue:queue.map(n=>n.val),result:JSON.parse(JSON.stringify(result)),msg:`第 ${level} 层完成:[${levelVals}]`});
|
|||
|
|
level++;
|
|||
|
|
}
|
|||
|
|
steps.push({stage:'done',hl:{},queue:[],result:JSON.parse(JSON.stringify(result)),msg:'层序遍历完成'});
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
function render(step) {
|
|||
|
|
const s = steps[step];
|
|||
|
|
let viz = renderBinaryTree(root, {highlights: s.hl});
|
|||
|
|
viz += '<div style="margin-top:12px;"><b>队列:</b></div>';
|
|||
|
|
viz += renderQueue(s.queue);
|
|||
|
|
viz += '<div style="margin-top:8px;"><b>结果:</b>' + JSON.stringify(s.result) + '</div>';
|
|||
|
|
$('vizArea').innerHTML = viz;
|
|||
|
|
$('detailContent').innerHTML = '<div class="calc-block">' + s.msg + '</div>';
|
|||
|
|
if (s.stage === 'done') {
|
|||
|
|
$('resultContent').innerHTML = `<div class="final-answer">层序遍历 = <b>${JSON.stringify(s.result)}</b></div>`;
|
|||
|
|
}
|
|||
|
|
$('hintText').textContent = s.msg;
|
|||
|
|
const stages = ['init→初始化','start_level→开始层','visit→访问','end_level→完成层','done→完成'];
|
|||
|
|
$('pipeline').innerHTML = stages.map(st => {
|
|||
|
|
const [k,l] = st.split('→');
|
|||
|
|
return `<span class="pipe-step ${s.stage===k?'active':''}">${l}</span>`;
|
|||
|
|
}).join('<i>→</i>');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
function init() {
|
|||
|
|
const sel = $('exampleSelect');
|
|||
|
|
examples.forEach((e,i) => { sel.innerHTML += `<option value="${i}">${e.label}</option>`; });
|
|||
|
|
$('inputArea').value = '[3,9,20,null,null,15,7]';
|
|||
|
|
buildSteps(examples[0].tree);
|
|||
|
|
stepCtrl = new StepController({onStep: render});
|
|||
|
|
stepCtrl.setSteps(steps.map((_,i)=>i));
|
|||
|
|
$('stepInfo').textContent = '步骤 1 / ' + steps.length;
|
|||
|
|
stepCtrl.onStep = (idx) => { render(idx); $('stepInfo').textContent = `步骤 ${idx+1} / ${steps.length}`; };
|
|||
|
|
$('applyBtn').onclick = () => {
|
|||
|
|
try { const arr = JSON.parse($('inputArea').value); buildSteps(arr); stepCtrl.setSteps(steps.map((_,i)=>i)); render(0); $('stepInfo').textContent = '步骤 1 / ' + steps.length; }
|
|||
|
|
catch(e) { alert('请输入合法数组'); }
|
|||
|
|
};
|
|||
|
|
$('exampleSelect').onchange = () => {
|
|||
|
|
const e = examples[parseInt($('exampleSelect').value)];
|
|||
|
|
$('inputArea').value = JSON.stringify(e.tree);
|
|||
|
|
buildSteps(e.tree); stepCtrl.setSteps(steps.map((_,i)=>i)); render(0);
|
|||
|
|
};
|
|||
|
|
$('prevBtn').onclick = () => stepCtrl.prev();
|
|||
|
|
$('nextBtn').onclick = () => stepCtrl.next();
|
|||
|
|
$('jumpBtn').onclick = () => stepCtrl.jumpToEnd();
|
|||
|
|
$('autoBtn').onclick = () => { const on = stepCtrl.toggleAuto(); $('autoBtn').textContent = on ? '暂停' : '自动播放'; };
|
|||
|
|
$('resetBtn').onclick = () => { stepCtrl.reset(); $('autoBtn').textContent = '自动播放'; };
|
|||
|
|
}
|
|||
|
|
init();
|
|||
|
|
$('codeArea').innerHTML = renderCode(`def levelOrder(root):
|
|||
|
|
if not root: return []
|
|||
|
|
res, queue = [], [root]
|
|||
|
|
while queue:
|
|||
|
|
level = []
|
|||
|
|
for _ in range(len(queue)):
|
|||
|
|
node = queue.pop(0)
|
|||
|
|
level.append(node.val)
|
|||
|
|
if node.left: queue.append(node.left)
|
|||
|
|
if node.right: queue.append(node.right)
|
|||
|
|
res.append(level)
|
|||
|
|
return res`, {lang:'Python'});
|
|||
|
|
|
|||
|
|
})();
|
|||
|
|
</script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|