码迷,mamicode.com
首页 > 其他好文 > 详细

52、字符流中第一个不重复的字符

时间:2017-08-31 21:11:21      阅读:1229      评论:0      收藏:0      [点我收藏+]

标签:nbsp   pre   for   oid   函数   app   字符   integer   bre   

一、题目

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

二、解法

 1 mport java.util.ArrayList;
 2 import java.util.HashMap;
 3 public class Solution {
 4  HashMap<Character,Integer> map = new HashMap();
 5     ArrayList<Character> list = new ArrayList<Character>();
 6     //insert one char from stringstream
 7     public void Insert(char ch){
 8         if(map.containsKey(ch)){
 9             map.put(ch, map.get(ch)+1);
10         }else{
11             map.put(ch, 1);
12         }
13         list.add(ch);
14     }
15      public char FirstAppearingOnce()
16       {
17         char c = ‘#‘;
18         for(char key : list){
19             if(map.get(key) == 1){
20                 c = key;
21                 break;
22             }
23         }
24         return c;
25       }
26 }

 

52、字符流中第一个不重复的字符

标签:nbsp   pre   for   oid   函数   app   字符   integer   bre   

原文地址:http://www.cnblogs.com/fankongkong/p/7460233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!