Merge pull request #104 from justin-tse/dev

Fix the PrintUtil.js showTrunks and Update JavaScript and docs' style (Chapter of Tree)
This commit is contained in:
Yudong Jin 2022-12-13 22:55:02 +08:00 committed by GitHub
commit 4289aa3c8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 26 additions and 26 deletions

View file

@ -121,7 +121,7 @@ function min(root) {
/* Driver Code */
/* 初始化二叉搜索树 */
var nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
BinarySearchTree(nums)
BinarySearchTree(nums);
console.log("\n初始化的二叉树为\n");
printTree(getRoot());

View file

@ -19,8 +19,8 @@ n1.left = n2;
n1.right = n3;
n2.left = n4;
n2.right = n5;
console.log("\n初始化二叉树\n")
printTree(n1)
console.log("\n初始化二叉树\n");
printTree(n1);
/* 插入与删除结点 */
let P = new Tree.TreeNode(0);

View file

@ -8,7 +8,7 @@ const { arrToTree } = require("../include/TreeNode");
const { printTree } = require("../include/PrintUtil");
// 初始化列表,用于存储遍历序列
var list = []
var list = [];
/* 前序遍历 */
function preOrder(root) {

View file

@ -79,7 +79,7 @@ function showTrunks(p) {
}
showTrunks(p.prev);
console.log(p.str);
process.stdout.write(p.str);
}
module.exports = {

View file

@ -8,9 +8,9 @@
* 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) // 右子结点指针
this.val = (val === undefined ? 0 : val); // 结点值
this.left = (left === undefined ? null : left); // 左子结点指针
this.right = (right === undefined ? null : right); // 右子结点指针
}
/**

View file

@ -65,9 +65,9 @@ comments: true
```js title=""
/* 链表结点类 */
function TreeNode(val, left, right) {
this.val = (val === undefined ? 0 : val) // 结点值
this.left = (left === undefined ? null : left) // 左子结点指针
this.right = (right === undefined ? null : right) // 右子结点指针
this.val = (val === undefined ? 0 : val); // 结点值
this.left = (left === undefined ? null : left); // 左子结点指针
this.right = (right === undefined ? null : right); // 右子结点指针
}
```