關於騰訊的一道字符串匹配的面試題

Question:html

 假設兩個字符串中所含有的字符和個數都相同咱們就叫這兩個字符串匹配,python

 好比:abcda和adabc,因爲出現的字符個數都是相同,只是順序不一樣,面試

 因此這兩個字符串是匹配的。要求高效!數組

 

Answer:spa

假定字符串中都是ASCII字符。以下用一個數組來計數,前者加,後者減,所有爲0則匹配。.net

static bool IsMatch(string s1, string s2)
        {
            if (s1 == null && s2 == null) return true;
            if (s1 == null || s2 == null) return false;

            if (s1.Length != s2.Length) return false;

            int[] check = new int[128];

            foreach (char c in s1)
            {
                check[(int)c]++;
            }
            foreach (char c in s2)
            {
                check[(int)c]--;
            }
            foreach (int i in check)
            {
                if (i != 0) return false;
            }

            return true;
        }

 

若是使用python的話,就更簡單了:unix

  1. >>> sorted('abcda') == sorted('adabc')
  2. True

複製代碼Geek的玩法不少,除了有人先提到的上面作法,我還想到如下方法也挺Geek:code

  1. >>> from collections import Counter
  2. >>> Counter('abcda') == Counter('adabc')
  3. True

複製代碼 (Counter類在Python 2.7裏被新增進來)

看看結果,是同樣的:htm

  1. >>> Counter('abcda')
  2. Counter({'a': 2, 'c': 1, 'b': 1, 'd': 1})
  3. >>> Counter('adabc')
  4. Counter({'a': 2, 'c': 1, 'b': 1, 'd': 1})

複製代碼 另外,能夠稍微格式化輸出結果看看,用到了Counter類的elements()方法:blog

  1. >>> list(Counter('abcda').elements())
  2. ['a', 'a', 'c', 'b', 'd']
  3. >>> list(Counter('adabc').elements())
  4. ['a', 'a', 'c', 'b', 'd']

複製代碼

 

REF:

 http://blog.sina.com.cn/s/blog_5fe9373101011pj0.html

http://bbs.chinaunix.net/thread-3770641-1-1.html

http://topic.csdn.net/u/20120908/21/F8BE391F-E4F1-46E9-949D-D9A640E4EE32.html

最新九月百度人搜,阿里巴巴,騰訊華爲京東小米筆試面試二十題

http://blog.csdn.net/v_july_v/article/details/7974418 

精選30道Java筆試題解答

http://www.cnblogs.com/lanxuezaipiao/p/3371224.html

相關文章
相關標籤/搜索