首页 > 其他 > 详细

剑指offer——53字符流中第一个只出现一次的字符

时间:2019-10-18 23:03:43      阅读:60      评论:0      收藏:0      [点我收藏+]

题目描述

请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。

输出描述:

如果当前字符流没有存在出现一次的字符,返回#字符。

题解:
  使用哈希表记录每个字母出现的次数,当选中的字母为重复时,就像后寻找未重复的字母

 

 1 class Solution
 2 {
 3 public:
 4     //Insert one char from stringstream
 5     void Insert(char ch)
 6     {
 7         str += ch;
 8         word[ch]++;
 9         if (res == # && word[ch] == 1)//新的字母
10             res = ch;
11         if (word[res] > 1)//重复了
12         {
13             res = #;
14             for (int i = index; i < str.length(); ++i)//先后寻找未重复的字母
15             {
16                 if (word[str[i]] == 1)
17                 {
18                     res = str[i];
19                     index = i;
20                     break;
21                 }
22             }
23         }
24     }
25     //return the first appearence once char in current stringstream
26     char FirstAppearingOnce()
27     {
28         return res;
29     }
30 private:
31     string str = "";
32     int word[256] = { 0 };
33     int index = 0;
34     char res = #;
35 };

 

剑指offer——53字符流中第一个只出现一次的字符

原文:https://www.cnblogs.com/zzw1024/p/11701124.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!