leetcode第三题: 输出不包含重复字母的最长子串

文章搬家至http://www.cnblogs.com/buptl/p/6520655.html

题目

Given a string, find the length of the longest substring without repeating characters.

Examples:

Given “abcabcbb”, the answer is “abc”, which the length is 3.

Given “bbbbb”, the answer is “b”, with the length of 1.

Given “pwwkew”, the answer is “wke”, with the length of 3. Note that the answer must be a substring, “pwke” is a subsequence and not a substring.

也就是说给定一个字符串,输出不包含重复字母的最长子串长度。

思路

遍历一次字符串,O(n)复杂度下可以解决。主要思路就是在遍历的过程中
1. 记录每个字母上一次出现的位置
2. 维持一个从当前位置往前数不包含重复字母的子串,记录这个字串的起止位置start, end

遍历的过程中就是根据相应位置字母是否出现过,以及上次出现的位置,不断更新start, end的过程。

代码

可以到github上查看: https://github.com/lcy362/Algorithms/tree/master/src/main/java/com/mallow/algorithm

import java.util.HashMap;

/**
 * leetcode 3
 * https://leetcode.com/problems/longest-substring-without-repeating-characters/
 * Created by lcy on 2017/2/15.
 */
public class LongestSubstringNotRepeat {
    public int lengthOfLongestSubstring(String s) {
        if (s.length() <= 1) {
            return s.length();
        }
        HashMap<Character, Integer> charPos = new HashMap<>();
        char[] chars = s.toCharArray();
        int len = 0;
        int max = 0;
        int start = 0;
        int end = 0;
        for (int i = 0; i < chars.length; i++) {
            if (charPos.containsKey(chars[i])) {
                int tempstart = charPos.get(chars[i]) + 1;
                if (tempstart > start) {
                    start = tempstart;
                }
                end++;
                len = end - start;
            } else {
                len++;
                end++;
            }
            charPos.put(chars[i], i);
            if (len > max) {
                max = len;
            }
        }
        return max;
    }

    public static void main(String args[]) {
        LongestSubstringNotRepeat l = new LongestSubstringNotRepeat();
        System.out.println(l.lengthOfLongestSubstring("abcabcbb"));
        System.out.println(l.lengthOfLongestSubstring("bbbbb"));
        System.out.println(l.lengthOfLongestSubstring("pwwkew"));
        System.out.println(l.lengthOfLongestSubstring("abba"));
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值