@acrom/treevis 中文文档教程
treevis
Treevis 是一个用于绘制 LeetCode 树图的小型实用程序。 调试可视化测试用例很有用。
How to Use
$ npm install -g treevis
or
$ yarn global add treevis
then
$ treevis <array>
Example
treevis [5,4,7,3,null,2,null,-1,null,9]
会产生
5
/ \
/ \
4 7
/ /
3 2
/ /
-1 9
Disclaimer
长树并不总是正确显示。
treevis
Treevis is a small utility to graph LeetCode trees. It's useful to debug visually test cases.
How to Use
$ npm install -g treevis
or
$ yarn global add treevis
then
$ treevis <array>
Example
treevis [5,4,7,3,null,2,null,-1,null,9]
will produce
5
/ \
/ \
4 7
/ /
3 2
/ /
-1 9
Disclaimer
Long trees don't always display correctly.