美文网首页
转化排序

转化排序

作者: 行走的蛋白质 | 来源:发表于2021-04-13 08:54 被阅读0次
    1. 给定由 a-z A-Z 空格 组成的一个字符串,要求:按字典序输出该字符串中出现的全部字母(转化为小写),并给出时间复杂度
    const str = 'Hello World';
    const arr = [];
    const obj = {};
    for (let i = 0; i < str.length; i++) {
        if (str[i] !== ' ') {
            const curStr = str[i].toLocaleLowerCase();
            if (!obj[curStr]) {
                obj[curStr] = true;
                arr.push(curStr);
            }
        }
    }
    const result = arr.sort();
    const result1 = arr.reverse();
    console.log(result);
    

    相关文章

      网友评论

          本文标题:转化排序

          本文链接:https://www.haomeiwen.com/subject/rfdqlltx.html