【leetcode with java】3 Longest Substring Without Repeating Characters

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.

Tags: Hash Table ,Two Pointers String

【分析】题目给了Hash Table的提示,问题就很好解决了
<span style="white-space:pre">	</span>设原字符串为S。设置两个指针i,j分别指向当前所找到的符合条件的子串的首尾,i、j之间的每个字符作为key,字符在S中索引在位置作为Value存储在一个HashTable中,取j位置的下一个字符S[j+1]。如果S[j+1]不在HashTable中则将其加入到HashTable中并且j++;若S[index]与S[j]相同则将i到index之间的字符从HashTable中remove掉,然后将i的值设为index,将s[j]加入到HashTable,j++。以此重复进行,直到j=S.length。

T(n) =O(n)
 
【上码】

<pre name="code" class="java">import java.util.Hashtable;

public class Solution {
	
	public int lengthOfLongestSubstring(String s) {
		int longest = 0;
		
		Hashtable curr    = new Hashtable();
		//int currLen = 0;
		
		char[] chars = s.toCharArray();
		
		int i=0,j=0;
		while(j < chars.length){
			Object index = curr.get(chars[j]);
			if (index==null) {
				curr.put(chars[j],j);
				j++;
				longest = longest>=(j-i)?longest:(j-i);
			}
			else {
				int p = (int)index;
				for(;i<=p;i++){
					curr.remove(chars[i]);
				}
			}
		}
		return longest;
	}
}


 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值