数据结构 js 非递归形式的中序遍历

const { tree } = require("./utils/BinarySearchTree");

//非递归形式的中序遍历
//因为 console.log 会换行,不能将所有内容收集成一行。所以使用 str 来收集要打印的内容。

/**
 * 进行
 */
let stack = [];
function InOrderDisplayByStack(root, str = "") {
  if (root == undefined || root == null) {
    return "";
  }

  while (root || stack.length) {
    /**
     *   如果 root 为 undefined, 且 stack 不为空,那么后继节点一定是已经入栈过的点。
     * 对于入栈过的点,是不需要重新访问其左子树的。
     */
    while (root) {
      stack.push(root);
      root = root.leftNode;
    }

    /**
     * 判断 stack.length, 主要是树就只有一个节点的时候的情形。
     */
    if (stack.length) {
      root = stack.pop();
      //中序访问。
      str += `${root.value}, `;
      //分两种情况,一种是 rightNode 为 undefine。一种是右子树。
      root = root.rightNode;
    }
  }

  return str;
}

let content = InOrderDisplayByStack(tree);
console.log(content.replace(/, $/, ""));

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值