JSPM

tree-dump

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3859477
  • Score
    100M100P100Q213906F
  • License Apache-2.0

High-performance (binary) tree and sorted map implementation (AVL, Splay, Radix, Red-Black)

Package Exports

  • tree-dump
  • tree-dump/lib/index.js
  • tree-dump/lib/printBinary
  • tree-dump/lib/printBinary.js
  • tree-dump/lib/printTree
  • tree-dump/lib/printTree.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tree-dump) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

tree-dump

Prints a tree structure to the console. Can print a binary tree or a tree with any number of children.

Usage

Install

npm install tree-dump

Print a non-binary tree

import {printTree} from 'tree-dump';

const str = 'start' + printTree('', [
  (tab) => 'line 1',
  () => '',
  (tab) => 'line 2' + printTree(tab, [
    (tab) => 'line 2.1',
    (tab) => 'line 2.2',
  ])
  (tab) => 'line 3',
]);

console.log(str);
// start
// ├── line 1
// │
// ├── line 2
// │   ├── line 2.1
// │   └── line 2.2
// └── line 3

Print a binary tree

import {printBinary} from 'tree-dump';

const str =
  'Node' +
  printBinary('', [
    (tab) => 'left' + printBinary(tab, [
      () => 'left 1',
      () => 'right 1',
    ]),
    (tab) => 'right' + printBinary(tab, [
      () => 'left 2',
      () => 'right 2',
    ]),
  ]);

console.log(str);
// Node
// ← left
//   ← left 1
//   → right 1
// → right
//   ← left 2
//   → right 2