zoukankan      html  css  js  c++  java
  • 程序员面试金典--字符流中第一个不重复的字符

    程序员面试金典--字符流中第一个不重复的字符

    题目描述

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

    输出描述:

    如果当前字符流没有存在出现一次的字符,返回#字符。
    class Solution
    {
        int cnt[128] =  {0}; 
        int idx[128] =  {0}; 
        
        int n = 1; 
        
        
    public:
      //Insert one char from stringstream
        
        void Insert(char ch)
        {
             if(cnt[ch] == 0){
                 idx[ ch ] = n; 
             } 
            ++cnt[ch]; 
            ++n; 
            
        }
      //return the first appearence once char in current stringstream
        char FirstAppearingOnce()
        {
            char ans = '#', pt = 0x3f3f3f3f; 
            for(int i=0; i<128; ++i){
                if(cnt[i] == 1 && pt > idx[i] ){
                    pt = idx[i]; 
                    ans = (char)i; 
                }
            }
            return ans; 
        }
    
    };
    

      

  • 相关阅读:
    文字
    <script type="text/x-template"> 模板
    防xss攻击
    url
    symmfony
    composer
    header 和http状态码
    bootstrap
    linux的设置ip连接crt,修改主机名,映射,建文件
    Centos上传下载小工具lrzsz
  • 原文地址:https://www.cnblogs.com/zhang-yd/p/7286022.html
Copyright © 2011-2022 走看看