mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 11:56:30 +08:00
01345c23ca
* Add JavaScript and TypeScript code of preorder traversal (Chapter of Backtracking) * Update preorder_traversal_iii_compact.ts
40 lines
858 B
JavaScript
40 lines
858 B
JavaScript
/**
|
|
* File: preorder_traversal_ii_compact.js
|
|
* Created Time: 2023-05-09
|
|
* Author: Justin (xiefahit@gmail.com)
|
|
*/
|
|
|
|
const { arrToTree } = require('../modules/TreeNode');
|
|
const { printTree } = require('../modules/PrintUtil');
|
|
|
|
/* 前序遍历:例题二 */
|
|
function preOrder(root, path, res) {
|
|
if (root === null) {
|
|
return;
|
|
}
|
|
// 尝试
|
|
path.push(root);
|
|
if (root.val === 7) {
|
|
// 记录解
|
|
res.push([...path]);
|
|
}
|
|
preOrder(root.left, path, res);
|
|
preOrder(root.right, path, res);
|
|
// 回退
|
|
path.pop();
|
|
}
|
|
|
|
// Driver Code
|
|
const root = arrToTree([1, 7, 3, 4, 5, 6, 7]);
|
|
console.log("\n初始化二叉树");
|
|
printTree(root);
|
|
|
|
// 前序遍历
|
|
const path = [];
|
|
const res = [];
|
|
preOrder(root, path, res);
|
|
|
|
console.log("\n输出所有根节点到节点 7 的路径");
|
|
res.forEach(path => {
|
|
console.log(path.map(node => node.val));
|
|
});
|