avatar

目录
算法面试题-查找指定的字符串

实现一个算法,寻找字符串中出现次数最少的、并且首次出现位置最前的字符如
cbaacfdeaebb“,符合要求的是”f”,因为他只出现了一次(次数最少)。
并且比其他只出现一次的字符(如”d”)首次出现的位置最靠前。

const findMinStr = (str) => {
    const hash = {};
    for (let i = 0; i < str.length; i += 1) {
      hash[str[i]] = hash[str[i]] || { index: i, count: 0 };
      hash[str[i]].count += 1;
    }

    return Object.keys(hash).map(item => {
      return Object.assign({ char: item }, hash[item]);
    })
      .sort((a, b) => a.count - b.count)
      .filter((item, index, arr) => item.count === arr[0].count)
      .sort((a, b) => a.index - b.index)[0].char
};

const str = 'cbaacfdeaebb';

findMinStr (str)  // 'f'
文章作者: kshao
文章链接: https://blog.ksh7.com/2019/03/09/e7-ae-97-e6-b3-95-e9-9d-a2-e8-af-95-e9-a2-98-e6-9f-a5-e6-89-be-e6-8c-87-e5-ae-9a-e7-9a-84-e5-ad-97-e7-ac-a6-e4-b8-b2/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 kshao-blog
打赏
  • 微信
    微信
  • 支付寶
    支付寶