Coder Social home page Coder Social logo

前端: JavaScript: Set的集合操作 about blog HOT 3 OPEN

xvno avatar xvno commented on August 16, 2024
前端: JavaScript: Set的集合操作

from blog.

Comments (3)

xvno avatar xvno commented on August 16, 2024
  • Union
  • Difference, Symmetric Difference
  • Intersection
function cloneSet(set0) {
  let ret = new Set();
  set0.forEach(i => {
    ret.add(i);
  })
  return ret;
}
function getUnion(set1, set2) {
  let ret = cloneSet(set1);
  set2.forEach(i => {
    ret.add(i);
  });
  return ret;
}

function getDiff (set1, set2) {
  let ret = cloneSet(set1);
  set2.forEach(i => {
    ret.delete(i);
  });
  return ret;
}
function getSymDiff(set1, set2) {
  let diff1 = getDiff(set1, set2);
  let diff2 = getDiff(set2, set1);
  return getUnion(diff1, diff2);
}

function getIts (set1, set2) {
  let ret = cloneSet(set1);
  set2.forEach(i => {
    if(set1.has(i)) {
      ret.add(i);
    }
  });
  return ret;
}

let a = new Set([1,2,3,4,5,6]);
let b = new Set([4,5,6,7,8,9]);

console.log('getUnion: ', getUnion(a,b));
console.log('getDiff: ', getDiff(a,b));
console.log('getDiff: ', getDiff(b,a));
console.log('getSymDiff: ', getSymDiff(a, b));
console.log('getIts: ', getIts(a,b));

from blog.

xvno avatar xvno commented on August 16, 2024
getUnion:  Set { 1, 2, 3, 4, 5, 6, 7, 8, 9 }
getDiff:  Set { 1, 2, 3 }
getDiff:  Set { 7, 8, 9 }
getSymDiff:  Set { 1, 2, 3, 7, 8, 9 }
getIts:  Set { 1, 2, 3, 4, 5, 6 }

from blog.

xvno avatar xvno commented on August 16, 2024

把这些函数修改为接受一个参数, 挂在Set.prototype下作为原型方法调用.

from blog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.