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

LeetCode3:Longest Substring Without Repeating Characters

时间:2014-04-30 21:15:32      阅读:511      评论:0      收藏:0      [点我收藏+]

标签:com   http   blog   style   class   div   img   code   java   c   log   

题目:

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

解题思路:

一开始,没看清题目要求,以为是去重,一提交出错才知不是。

只要谈到去重或者无重复之类的词,就应该想到哈希表或bitmap。

这里直接引用网上大牛的解题方法:http://blog.csdn.net/kenden23/article/details/16839757

mamicode.com,码迷

利用两指针i,j。i走在前,每次到哈希表中查找之前是否出现,没有则将对应位置置1,若出现过,说明开始下一个子串

实现代码:

mamicode.com,码迷
#include <iostream>
#include <string>
#include <cstring>
using namespace std;

/**
Given a string, find the length of the longest substring without repeating characters. 
For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. 
For "bbbbb" the longest substring is "b", with the length of 1.
*/
class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        if(s.empty())
            return 0;
        int len = s.size();
        int bitmap[256] = {0};
        //memset(bitmap, 0, sizeof(int) * 26);
        int maxLen = 0;
        int j = 0;
        for(int i = 0; i < len; i++)
        {
            if(bitmap[s[i]] == 0)
            {
                bitmap[s[i]] = 1;
            }
            else
            {
                maxLen = max(maxLen, i-j);
                while(s[i] != s[j])//对bitmap进行设置,将重复元素之前的所有元素对应的位置0,因为这些元素不参与下一次字符串 
                {
                    bitmap[s[j]] = 0;
                    j++;
                    
                }
                j++;
            }        
        }
        maxLen = max(maxLen, len-j);//for循环退出是因为i =len,所以这里还要判断 
        return maxLen;
        
    }
};

int main(void)
{

    string s("wlrbbmqbhcdarzowkkyhiddqscdxrjmowfrxsjybldbefsarcbynecdyggxxpklorellnmpapqfwkhopkmco");
    Solution solution;
    int res = solution.lengthOfLongestSubstring(s);
    cout<<res<<endl;
    return 0;
}
mamicode.com,码迷

LeetCode3:Longest Substring Without Repeating Characters,码迷,mamicode.com

LeetCode3:Longest Substring Without Repeating Characters

标签:com   http   blog   style   class   div   img   code   java   c   log   

原文地址:http://www.cnblogs.com/mickole/p/3698956.html

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