摘要:
字典也称为映射、符号表或关联数组,在计算机科学中经常用来保存对象的引用地址。 集合以【值,值】的形式存放元素,字典是以【键,值】的形式存放元素。 class ValuePair { //存放一对键值的对象 constructor(key, value) { this.key = key; this. 阅读全文
摘要:
let set = new Set(); function union(set1, set2) { //set1与set2的并集 let unionSet = new Set(); set1.forEach(element => { unionSet.add(element); }); set2.f 阅读全文