leetcode 389 map iterator 的使用
Posted 晴朗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 389 map iterator 的使用相关的知识,希望对你有一定的参考价值。
1 class Solution { 2 public: 3 char findTheDifference(string s, string t) { 4 map<char,int>Map_Temp; 5 for(int i=0;i<s.size();i++) 6 Map_Temp[s[i]-‘a‘]++; 7 for(int i=0;i<t.size();i++) 8 Map_Temp[t[i]-‘a‘]--; 9 map<char,int>::iterator iter; 10 for(iter=Map_Temp.begin();iter!=Map_Temp.end();iter++) 11 if(iter->second) 12 return char(iter->first+‘a‘); 13 return 0; 14 } 15 };
以上是关于leetcode 389 map iterator 的使用的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode_389. Find the Difference