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; 
        }
    
    };
    

      

  • 相关阅读:
    HappyLeetcode45:Divide Two Integers
    HappyLeetcode44:Plus One
    HappyLeetcode43:Symmetric Tree
    HappyLeetcode42:Intersection of Two Linked Lists
    特征向量中心性(从文献中摘抄)
    二叉树(普通无规律)
    链式队列
    链式栈
    链表
    指针
  • 原文地址:https://www.cnblogs.com/zhang-yd/p/7286022.html
Copyright © 2011-2022 走看看