摘要: //字典树和链表的区别,是node.next指向一个node 或 node[]的区别 function Node(){ this.next=[]; this.value= null; } function TrieST(){ this.root = new Node(); this.put = (k 阅读全文
posted @ 2020-02-29 09:02 Esther_Cheung 阅读(306) 评论(0) 推荐(0)