摘要: //通过木桶结构压缩数据,getMidNum获取中间数 class Tong { constructor(){ this.data=[] this.length=0; } add(num){ if(!this.data[num]){ this.data[num]=1; }else{ this.dat 阅读全文
posted @ 2020-04-07 12:47 无工时代 阅读(136) 评论(0) 推荐(0) 编辑