摘要: 树,现代计算机中常见的数据结构,诸如文件系统,等等,今天看数据结构一颗了解到一颗树的存储方式可以使用如下结构(叫做:儿子兄弟表示方法):class Tree{ constructor(nodeValue,firstChild,nextSibiling){ this.node = nodeValue; 阅读全文
posted @ 2017-11-19 17:26 子龙_子龙 阅读(18) 评论(0) 推荐(0)