c 如何用map去重的字符串

c 如何用map去重的字符串,第1张

map<string,bool>a表示 字符串是否在a中出现过

对于每一个读入的字符串s,如果a<s>原来为false,ans++a<s>=true

输出ans

for(map<T,T>::iterator it = g_map.begin()it != g_map.end()it++)

{

for(map<T,T>::iterator it1 = g_map.begin()it1 != g_map.end()it1++)

{

if(it->first != it1->first &&it->second == it1->second)

return 1

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6776660.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存