C#題庫3

3. 無重複字符的最長子串
給定一個字符串,請你找出其中不含有重複字符的 最長子串 的長度。

示例 1:

輸入: "abcabcbb"
輸出: 3 
解釋: 因爲無重複字符的最長子串是 "abc",所以其長度爲 3。
示例 2:

輸入: "bbbbb"
輸出: 1
解釋: 因爲無重複字符的最長子串是 "b",所以其長度爲 1。
示例 3:

輸入: "pwwkew"
輸出: 3
解釋: 因爲無重複字符的最長子串是 "wke",所以其長度爲 3。
     請注意,你的答案必須是 子串 的長度,"pwke" 是一個子序列,不是子串。
 static void Main(string[] args)
        {

            string s = "tmmzuxt";
            char[] temp = s.ToCharArray();
            int length = 0;
            int start = 0;
            int result = 0;
            for (int i = 0; i < temp.Length; i++)
            {
                bool isRepeat = false;
                Console.WriteLine("start=" + start+",i="+i);
                for (; start < i; start++)
                {
                    if (temp[i] == temp[start])
                    {
                        isRepeat = true;
                        break;
                    }
                }
                if (isRepeat == false)
                {
                    if ((i - result + 1) > length)
                    {
                        length = i - result + 1;
                    }
                  
                    start = result;
                }
                else
                {
                    start = start + 1;
                    result = start;
                }
            }

          
       

            Console.WriteLine("Length" + length);
        }

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章