2020-08-11 map的计数:++比count速度快

 

int countCharacters(vector& words, string chars) {

       map charmap;

        //统计chars中各个字符出现的个数,存入哈希表中charmap

        for (char c:chars)

        {

            //charmap[c] = count(chars.begin(),chars.end(),c);

            ++charmap[c];//与前一句代码实现的功能一样,但是速度快

        }

}

 

你可能感兴趣的:(C++)