您好,登錄后才能下訂單哦!
本文實例講述了JS獲取數(shù)組中出現(xiàn)次數(shù)最多及第二多元素的方法。分享給大家供大家參考,具體如下:
整型數(shù)組中出現(xiàn)次數(shù)最多和第二多的元素
用哈希數(shù)組
function f(arr){ var i; var length=arr.length; var hash=[];//使用哈希數(shù)組 for(i=0;i<length;i++){ if(!hash[arr[i]])hash[arr[i]]=1;//沒有初始化的數(shù)組元素為undefined,undefined++為NaN else hash[arr[i]]++; } var max=0;//最多的次數(shù) var maxV;//出現(xiàn)最多的元素 var second=0;//第二多的次數(shù) var secondV;//出現(xiàn)第二多的元素 hash.forEach(function(item,index){//forEach函數(shù)會跳過空元素 if(item>max){ second=max; secondV=maxV; max=item; maxV=index;//用索引來保存原數(shù)組的值 }else if(item>second){ second=item; secondV=index; } }); return {max,maxV,second,secondV}; } var arr=[2,2,2,2,3,4,5,4,3,1,4,4,100,100]; var {max,maxV,second,secondV}=f(arr);//ES的元素解構賦值 console.log(max,maxV,second,secondV);
運行結果:
數(shù)組中出現(xiàn)次數(shù)最多和第二多的元素
用對象保存值和次數(shù)
function f(arr){ var temp=[];//對象數(shù)組 var i; temp[0]={value:arr[0],index:1};//保存數(shù)組元素出現(xiàn)的次數(shù)和值 arr.sort(); for(i=1;i<arr.length;i++){ if(arr[i]==arr[i-1]){ temp[temp.length-1].index++; }else{//不相同則新增一個對象元素 temp.push({index:1,value:arr[i]}); } } temp.sort(function(a,b){//按照出現(xiàn)次數(shù)從大到小排列 return a.index<b.index; }) var max=temp[0].index; var maxV=temp[0].value; var second=temp[1].index; var secondV=temp[1].value; return {max,maxV,second,secondV}; } var arr=[2,2,3,4,5,100,100,,3,1,4,4,100,100]; var {max,maxV,second,secondV}=f(arr); console.log(max,maxV,second,secondV);
運行結果:
這種方法不僅可以用于整型數(shù)組的統(tǒng)計,還能用于字符數(shù)組的統(tǒng)計
以上代碼改用ES6的形式書寫
function f(arr){ class num{ constructor(value){ this.value=value; this.index=1; } add(){ this.index++; } } arr.sort(); let temp=[]; temp[0]=new num(arr[0]); for(let i=1;i<arr.length;i++){ if(arr[i]==arr[i-1]){ temp[temp.length-1].add(); }else{ temp.push(new num(arr[i])); } } temp.sort(function(a,b){ return a.index<b.index; }) let max=temp[0].index; let maxV=temp[0].value; let second=temp[1].index; let secondV=temp[1].value; return {max,maxV,second,secondV}; } var arr=['a','b','a','b','a','c','d','d','d','d']; var {max,maxV,second,secondV}=f(arr); console.log(max,maxV,second,secondV);
運行結果:
更多關于JavaScript相關內容感興趣的讀者可查看本站專題:《JavaScript數(shù)組操作技巧總結》、《JavaScript排序算法總結》、《JavaScript數(shù)學運算用法總結》、《JavaScript數(shù)據(jù)結構與算法技巧總結》、《JavaScript遍歷算法與技巧總結》、《JavaScript查找算法技巧總結》及《JavaScript錯誤與調試技巧總結》
希望本文所述對大家JavaScript程序設計有所幫助。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。