如何在数组中获取唯一值

时间:2012-06-28 14:22:05

标签: javascript jquery

如何获取数组中唯一值的列表?我是否总是必须使用第二个数组,或者在JavaScript中是否有与java的hashmap相似的内容?

我将仅使用 JavaScript jQuery 。不能使用其他库。

29 个答案:

答案 0 :(得分:167)

对于那些寻找单线程(简单且功能齐全),与当前浏览器兼容的人:

var a = ["1", "1", "2", "3", "3", "1"];
var unique = a.filter(function(item, i, ar){ return ar.indexOf(item) === i; });

更新18-04-17

似乎'Array.prototype.includes'现在在主流浏览器的最新版本(compatibility)中得到广泛支持

2015年7月29日更新:

有些计划正在为浏览器支持标准化的'Array.prototype.includes'方法,虽然它没有直接回答这个问题;通常是相关的。

用法:

["1", "1", "2", "3", "3", "1"].includes("2");     // true

Pollyfill(browser supportsource from mozilla):

// https://tc39.github.io/ecma262/#sec-array.prototype.includes
if (!Array.prototype.includes) {
  Object.defineProperty(Array.prototype, 'includes', {
    value: function(searchElement, fromIndex) {

      // 1. Let O be ? ToObject(this value).
      if (this == null) {
        throw new TypeError('"this" is null or not defined');
      }

      var o = Object(this);

      // 2. Let len be ? ToLength(? Get(O, "length")).
      var len = o.length >>> 0;

      // 3. If len is 0, return false.
      if (len === 0) {
        return false;
      }

      // 4. Let n be ? ToInteger(fromIndex).
      //    (If fromIndex is undefined, this step produces the value 0.)
      var n = fromIndex | 0;

      // 5. If n ≥ 0, then
      //  a. Let k be n.
      // 6. Else n < 0,
      //  a. Let k be len + n.
      //  b. If k < 0, let k be 0.
      var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);

      // 7. Repeat, while k < len
      while (k < len) {
        // a. Let elementK be the result of ? Get(O, ! ToString(k)).
        // b. If SameValueZero(searchElement, elementK) is true, return true.
        // c. Increase k by 1.
        // NOTE: === provides the correct "SameValueZero" comparison needed here.
        if (o[k] === searchElement) {
          return true;
        }
        k++;
      }

      // 8. Return false
      return false;
    }
  });
}

答案 1 :(得分:104)

由于我在@Rocket答案的评论中继续讨论它,我不妨提供一个不使用库的示例。这需要两个新的原型函数containsunique

Array.prototype.contains = function(v) {
    for(var i = 0; i < this.length; i++) {
        if(this[i] === v) return true;
    }
    return false;
};

Array.prototype.unique = function() {
    var arr = [];
    for(var i = 0; i < this.length; i++) {
        if(!arr.includes(this[i])) {
            arr.push(this[i]);
        }
    }
    return arr; 
}

然后你可以这样做:

var duplicates = [1,3,4,2,1,2,3,8];
var uniques = duplicates.unique(); // result = [1,3,4,2,8]

为了获得更高的可靠性,您可以将contains替换为MDN的indexOf垫片,并检查每个元素的indexOf是否等于-1:https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/indexOf

答案 2 :(得分:79)

这是一个更清洁的ES6解决方案,我看到这里没有包含。它使用Setspread operator...

var a = [1, 1, 2];

[... new Set(a)]

返回[1, 2]

答案 3 :(得分:61)

One Liner,Pure JavaScript

使用ES6语法

list = list.filter((x, i, a) => a.indexOf(x) == i)

x --> item in array
i --> index of item
a --> array reference, (in this case "list")

enter image description here

使用ES5语法

list = list.filter(function (x, i, a) { 
    return a.indexOf(x) == i; 
});

浏览器兼容性:IE9 +

答案 4 :(得分:15)

如果您想保留原始数组,

你需要第二个数组来包含第一个的uniqe元素 -

大多数浏览器都有Array.prototype.filter

var unique= array1.filter(function(itm, i){
    return array1.indexOf(itm)== i; 
    // returns true for only the first instance of itm
});


//if you need a 'shim':
Array.prototype.filter= Array.prototype.filter || function(fun, scope){
    var T= this, A= [], i= 0, itm, L= T.length;
    if(typeof fun== 'function'){
        while(i<L){
            if(i in T){
                itm= T[i];
                if(fun.call(scope, itm, i, T)) A[A.length]= itm;
            }
            ++i;
        }
    }
    return A;
}
 Array.prototype.indexOf= Array.prototype.indexOf || function(what, i){
        if(!i || typeof i!= 'number') i= 0;
        var L= this.length;
        while(i<L){
            if(this[i]=== what) return i;
            ++i;
        }
        return -1;
    }

答案 5 :(得分:13)

使用EcmaScript 2016,你可以这样做。

 var arr = ["a", "a", "b"];
 var uniqueArray = Array.from(new Set(arr)); // Unique Array ['a', 'b'];

集合始终是唯一的,使用Array.from()可以将集合转换为数组。有关参考,请查看文档。

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set

答案 6 :(得分:13)

现在在ES6中我们可以使用新推出的ES6功能

var items = [1,1,1,1,3,4,5,2,23,1,4,4,4,2,2,2]
var uniqueItems = Array.from(new Set(items))

它将返回唯一的结果。

[1, 3, 4, 5, 2, 23]

答案 7 :(得分:12)

现在,您可以使用ES6的Set数据类型将阵列转换为唯一的Set。然后,如果需要使用数组方法,可以将其转换回数组:

var arr = ["a", "a", "b"];
var uniqueSet = new Set(arr); // {"a", "b"}
var uniqueArr = Array.from(uniqueSet); // ["a", "b"]
//Then continue to use array methods:
uniqueArr.join(", "); // "a, b"

答案 8 :(得分:7)

使用第二阵列的短而甜的解决方案;

var axes2=[1,4,5,2,3,1,2,3,4,5,1,3,4];

    var distinct_axes2=[];

    for(var i=0;i<axes2.length;i++)
        {
        var str=axes2[i];
        if(distinct_axes2.indexOf(str)==-1)
            {
            distinct_axes2.push(str);
            }
        }
    console.log("distinct_axes2 : "+distinct_axes2); // distinct_axes2 : 1,4,5,2,3

答案 9 :(得分:6)

使用jQuery,这是我做的Array独特函数:

Array.prototype.unique = function () {
    var arr = this;
    return $.grep(arr, function (v, i) {
        return $.inArray(v, arr) === i;
    });
}

console.log([1,2,3,1,2,3].unique()); // [1,2,3]

答案 10 :(得分:6)

在Javascript中不是原生的,但是很多库都有这种方法。

Underscore.js的_.uniq(array)link)效果很好(source)。

答案 11 :(得分:4)

你只需要使用vanilla JS就可以找到Array.some和Array.reduce的uniques。使用ES2015语法,它只有62个字符。

a.reduce((c, v) => b.some(w => w === v) ? c : c.concat(v)), b)

IE9 +和其他浏览器支持Array.some和Array.reduce。只需更改常规功能的胖箭头功能,即可支持不支持ES2015语法的浏览器。

var a = [1,2,3];
var b = [4,5,6];
// .reduce can return a subset or superset
var uniques = a.reduce(function(c, v){
    // .some stops on the first time the function returns true                
    return (b.some(function(w){ return w === v; }) ?  
      // if there's a match, return the array "c"
      c :     
      // if there's no match, then add to the end and return the entire array                                        
      c.concat(v)}),                                  
  // the second param in .reduce is the starting variable. This is will be "c" the first time it runs.
  b);                                                 

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce

答案 12 :(得分:3)

上述大多数解决方案都具有较高的运行时复杂性。

以下是使用reduce并且可以在 O(n)时间内完成工作的解决方案。

&#13;
&#13;
Array.prototype.unique = Array.prototype.unique || function() {
        var arr = [];
	this.reduce(function (hash, num) {
		if(typeof hash[num] === 'undefined') {
			hash[num] = 1; 
			arr.push(num);
		}
		return hash;
	}, {});
	return arr;
}
    
var myArr = [3,1,2,3,3,3];
console.log(myArr.unique()); //[3,1,2];
&#13;
&#13;
&#13;

注意:

此解决方案不依赖于reduce。我们的想法是创建一个对象图并将唯一的一个映射到数组中。

答案 13 :(得分:2)

快速,紧凑,没有嵌套循环,适用于任何对象,不仅仅是字符串和数字,需要一个谓词,只有5行代码!!

function findUnique(arr, predicate) {
  var found = {};
  arr.forEach(d => {
    found[predicate(d)] = d;
  });
  return Object.keys(found).map(key => found[key]); 
}

示例:按类型查找唯一项目:

var things = [
  { name: 'charm', type: 'quark'},
  { name: 'strange', type: 'quark'},
  { name: 'proton', type: 'boson'},
];

var result = findUnique(things, d => d.type);
//  [
//    { name: 'charm', type: 'quark'},
//    { name: 'proton', type: 'boson'}
//  ] 

如果你想让它找到第一个唯一的项目而不是最后一个,那么在那里添加一个found.hasOwnPropery()。

答案 14 :(得分:1)

您可以使用

let arr1 = [1,2,1,3];
let arr2 = [2,3,4,5,1,2,3];

let arr3 = [...new Set([...arr1,...arr2])];

它将为您提供独特的元素,

**>但有一个陷阱,

  

对于此“ 1”和1而言,它们是diff元素,**

第二个选项是在数组上使用过滤器方法。

答案 15 :(得分:1)

您可以输入重复的数组,下面的方法将返回包含唯一元素的数组。

function getUniqueArray(array){
    var uniqueArray = [];
    uniqueArray[0] = array[0];
    for(var i = 0; i < array.length; i++){
        var isExist = false;
        for(var j = 0; j < uniqueArray.length; j++){
            if(array[i] == uniqueArray[j]){
                isExist = true;
                break;
            }
            else{
                isExist = false;
            }
        }
        if(isExist == false){
            uniqueArray[uniqueArray.length] = array[i];
        }
    }
    return uniqueArray;
}

答案 16 :(得分:1)

如果您不必担心旧版浏览器,那么这正是Sets的目的。

  

Set对象使您可以存储任何类型的唯一值,无论是否   基本值或对象引用。

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set

const set1 = new Set([1, 2, 3, 4, 5, 1]);
// returns Set(5) {1, 2, 3, 4, 5}

答案 17 :(得分:0)

考虑到indexOf将返回元素的第一个出现,你可以这样做:

Array.prototype.unique = function(){
        var self = this;
        return this.filter(function(elem, index){
            return self.indexOf(elem) === index;
        })
    }

答案 18 :(得分:0)

function findUniques(arr){
  let uniques = []
  arr.forEach(n => {
    if(!uniques.includes(n)){
      uniques.push(n)
    }       
  })
  return uniques
}

let arr = ["3", "3", "4", "4", "4", "5", "7", "9", "b", "d", "e", "f", "h", "q", "r", "t", "t"]

findUniques(arr)
// ["3", "4", "5", "7", "9", "b", "d", "e", "f", "h", "q", "r", "t"]

答案 19 :(得分:0)

这是一种带有可自定义的equals函数的方法,该函数可用于基元以及自定义对象:

Array.prototype.pushUnique = function(element, equalsPredicate = (l, r) => l == r) {
    let res = !this.find(item => equalsPredicate(item, element))
    if(res){
        this.push(element)
    }
    return res
}

用法:

//with custom equals for objects
myArrayWithObjects.pushUnique(myObject, (left, right) => left.id == right.id)

//with default equals for primitives
myArrayWithPrimitives.pushUnique(somePrimitive)

答案 20 :(得分:0)

我在纯JS中尝试过这个问题。 我已按照以下步骤操作:1。对给定数组进行排序,2。遍历已排序数组,3。使用当前值验证上一个值和下一个值

// JS
var inpArr = [1, 5, 5, 4, 3, 3, 2, 2, 2,2, 100, 100, -1];

//sort the given array
inpArr.sort(function(a, b){
    return a-b;
});

var finalArr = [];
//loop through the inpArr
for(var i=0; i<inpArr.length; i++){
    //check previous and next value 
  if(inpArr[i-1]!=inpArr[i] && inpArr[i] != inpArr[i+1]){
        finalArr.push(inpArr[i]);
  }
}
console.log(finalArr);

Demo

答案 21 :(得分:0)

ES6方式:

const uniq = (arr) => (arr.filter((item, index, arry) => (arry.indexOf(item) === index)));

答案 22 :(得分:0)

function findUnique(arr) {
    var result = [];
    arr.forEach(function (d) {
        if (result.indexOf(d) === -1)
            result.push(d);
    });
    return result;
}

var unique = findUnique([1, 2, 3, 1, 2, 1, 4]); // [1,2,3,4]

答案 23 :(得分:0)

Array.prototype.unique = function () {
    var dictionary = {};
    var uniqueValues = [];
    for (var i = 0; i < this.length; i++) {
        if (dictionary[this[i]] == undefined){
            dictionary[this[i]] = i;
            uniqueValues.push(this[i]);
        }
    }
    return uniqueValues; 
}

答案 24 :(得分:0)

对这个问题的另一种想法。以下是使用较少代码实现此目的的方法。

var distinctMap = {};
var testArray = ['John', 'John', 'Jason', 'Jason'];
for (var i = 0; i < testArray.length; i++) {
  var value = testArray[i];
  distinctMap[value] = '';
};
var unique_values = Object.keys(distinctMap);

答案 25 :(得分:0)

到目前为止,解决方案的唯一问题是效率。如果您担心(并且您可能应该),则需要避免嵌套循环:for * for,filter * indexOf,grep * inArray,它们都会多次迭代数组。您可以使用thisthis

等解决方案实现单个循环

答案 26 :(得分:-1)

以下是该问题的单线解决方案:

&#13;
&#13;
var seriesValues = [120, 120, 120, 120];
seriesValues = seriesValues.filter((value, index, seriesValues) => (seriesValues.slice(0, index)).indexOf(value) === -1);
console.log(seriesValues);
&#13;
&#13;
&#13;

将其粘贴到浏览器控制台并获取结果,哟: - )

答案 27 :(得分:-1)

我只是想我们是否可以使用线性搜索来消除重复项:

JavaScript:
function getUniqueRadios() {

var x=document.getElementById("QnA");
var ansArray = new Array();
var prev;


for (var i=0;i<x.length;i++)
  {
    // Check for unique radio button group
    if (x.elements[i].type == "radio")
    {
            // For the first element prev will be null, hence push it into array and set the prev var.
            if (prev == null)
            {
                prev = x.elements[i].name;
                ansArray.push(x.elements[i].name);
            } else {
                   // We will only push the next radio element if its not identical to previous.
                   if (prev != x.elements[i].name)
                   {
                       prev = x.elements[i].name;
                       ansArray.push(x.elements[i].name);
                   }
            }
    }

  }

   alert(ansArray);

}

HTML:

<body>

<form name="QnA" action="" method='post' ">

<input type="radio"  name="g1" value="ANSTYPE1"> good </input>
<input type="radio" name="g1" value="ANSTYPE2"> avg </input>

<input type="radio"  name="g2" value="ANSTYPE3"> Type1 </input>
<input type="radio" name="g2" value="ANSTYPE2"> Type2 </input>


<input type="submit" value='SUBMIT' onClick="javascript:getUniqueRadios()"></input>


</form>
</body>

答案 28 :(得分:-2)

我有内置的 JQuery Unique 功能。

uniqueValues= jQuery.unique( duplicateValues );

有关更多信息,请参阅jquery API Documentations。

http://api.jquery.com/jquery.unique/