1. 集合数据结构

集合是由一组无序且不重复的项组成,和数学中的有限集合概念一样,空集就是不包含任何元素的集合。

1.1 创建集合

  • add(value):向集合添加一个新的项。
  • delete(value):从集合中移除一个值。
  • has(value):如果值在集合中,返回true,否则返回false。
  • clear():移除集合中的所有项。
  • size():返回集合所包含元素的数量。与数组的length属性类似。
  • values():返回一个包含集合中所有值的数组。

    1. function Set() {
    2. let items = {};
    3. /**
    4. * 判断集合中是否存在给定元素
    5. *
    6. * @param value
    7. * @returns {boolean}
    8. */
    9. this.has = function (value) {
    10. return items.hasOwnProperty(value);
    11. };
    12. /**
    13. * 添加新的项
    14. *
    15. * @param value
    16. * @returns {boolean}
    17. */
    18. this.add = function (value) {
    19. if (!this.has(value)) {
    20. items[value] = value; // 同时作为键和值保存,方便查找
    21. return true;
    22. }
    23. return false;
    24. };
    25. /**
    26. * 移除元素
    27. *
    28. * @param value
    29. * @returns {boolean}
    30. */
    31. this.delete = function (value) {
    32. if (this.has(value)) {
    33. delete items[value];
    34. return true;
    35. }
    36. return false;
    37. };
    38. /**
    39. * 移除集合中所有项
    40. */
    41. this.clear = function () {
    42. items = {};
    43. };
    44. /**
    45. * 返回集合所包含的元素数量
    46. *
    47. * @returns {number}
    48. */
    49. this.size = function () {
    50. return Object.keys(items).length;
    51. };
    52. /**
    53. * 返回一个包含集合中所有元素的数组
    54. *
    55. * @returns {[]}
    56. */
    57. this.values = function () {
    58. return Object.keys(items).map(key => items[key]);
    59. };
    60. /**
    61. * 求并集 A∪B
    62. *
    63. * @param otherSet
    64. */
    65. this.union = function (otherSet) {
    66. let unionSet = new Set();
    67. let values = this.values();
    68. values.forEach(value => unionSet.add(value));
    69. values = otherSet.values();
    70. values.forEach(value => unionSet.add(value));
    71. return unionSet;
    72. };
    73. /**
    74. * 求交集 A∩B
    75. *
    76. * @param otherSet
    77. * @returns {Set}
    78. */
    79. this.intersection = function (otherSet) {
    80. let intersectionSet = new Set();
    81. let values = this.values();
    82. values.forEach(value => {
    83. if (otherSet.has(value)) {
    84. intersectionSet.add(value);
    85. }
    86. });
    87. return intersectionSet;
    88. };
    89. /**
    90. * 求差集 A-B
    91. *
    92. * @param otherSet
    93. * @returns {Set}
    94. */
    95. this.difference = function (otherSet) {
    96. let differenceSet = new Set();
    97. let values = this.values();
    98. values.forEach(value => {
    99. if (!otherSet.has(value)) {
    100. differenceSet.add(value);
    101. }
    102. });
    103. return differenceSet;
    104. };
    105. /**
    106. * 判断A是否是B的子集
    107. *
    108. * @param otherSet
    109. * @returns {boolean}
    110. */
    111. this.subset = function (otherSet) {
    112. if (this.size() > otherSet.size()) {
    113. return false;
    114. } else {
    115. let values = this.values();
    116. for (let i = 0; i < values.length; i++) {
    117. if (!otherSet.has(values[i])) {
    118. return false;
    119. }
    120. }
    121. return true;
    122. }
    123. };
    124. }

    2. 集合相关问题

    2.1 设计一个 HashSet

    ```javascript // https://leetcode.com/problems/design-hashset/

// 不使用任何内建的哈希表库,设计一个 HashSet

// add(value): Insert a value into the HashSet. // contains(value) : Return whether the value exists in the HashSet or not. // remove(value): Remove a value in the HashSet. If the value does not exist in the HashSet, do nothing.

/**

  • Initialize your data structure here. */ var MyHashSet = function() { this.items = {}; };

/**

  • @param {number} key
  • @return {void} */ MyHashSet.prototype.add = function(key) { if (!this.contains(key)) { this.items[key] = key; } };

/**

  • @param {number} key
  • @return {void} */ MyHashSet.prototype.remove = function(key) { if (this.contains(key)) { delete this.items[key]; } };

/**

  • Returns true if this set contains the specified element
  • @param {number} key
  • @return {boolean} */ MyHashSet.prototype.contains = function(key) { return this.items.hasOwnProperty(key); };

/**

  • Your MyHashSet object will be instantiated and called as such:
  • var obj = new MyHashSet()
  • obj.add(key)
  • obj.remove(key)
  • var param_3 = obj.contains(key) */ ```