摘要: ```js class Node { constructor(value) { this.value = value; this.inNum = 0; this.outNum = 0; this.nextNodes = []; // 直接邻居 this.nextEdges = []; // 直接邻居 阅读全文
posted @ 2023-09-08 15:24 拉肥尔 阅读(27) 评论(0) 推荐(0)