算法58 ◉‿◉ 统计字符串中出现次数最多字符
本帖最后由 不二如是 于 2017-7-30 10:18 编辑http://xxx.fishc.com/forum/201705/05/225545py2j222x5z6x55n2.png
按照提示,完成代码,秀秀你的编程能力!
不许看答案,否则打屁屁
程序分析:
循环
charAt
源代码:
**** Hidden Message *****
○面试题索引贴●
如果喜欢,请订阅{:10_303:} :
HTML5 - 庖丁解牛 + JavaScript - 庖丁解牛
111111111111 emm 66 0.0
{:5_102:} 6666
let str="uuuuuunsdaofinujjjjjj",arr=[],map= new Map(),b='';
for (let i = 0; i <str.length; i++) {
let x=str;
if(!map.get(x)){map.set(x,1)}
else{map.set(x,parseInt(map.get(x))+1)};
}
map.forEach(function(value,key){arr.push(value)})
arr.sort((a,b)=>{b-a});
map.forEach(function(value,key){if(arr===map.get(key)){b=key}})
console.log(b,arr) 看看看看
页:
[1]