LeetCode第三题—— Longest Substring Without Repeating Characters(最长无重复子字符串)
题目描述
Given a string, find the length of the longest substring without repeating characters.
Example 1
Input: "abcabcbb"
Output: 3
Explanation: The answer is"abc", with the length of 3.
Example 2
Input: "bbbbb"
Output: 1
Explanation: The answer is"b", with the length of 1.
Example 3
Input: "pwwkew"
Output: 3
Explanation: 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.
My solution(94ms,39.2MB)
class Solution {
    public int lengthOfLongestSubstring(String s) {
        HashMap<String,Integer> map = new HashMap<String,Integer>();
        int result=0,current=1;
        for(int i=0;i<s.length();){
            String temp = s.substring(i,i+1);
            if (!map.containsKey(temp)) {
                map.put(temp,1);
                i++;
            }else{
                i = current;
                current++;
                int len = map.size();
                if(len > result){ result = len;}
                map.clear();
            }
            if(map.size()>result){
                result = map.size();
            }
        }
        return result;
    }
}
LeetCode第三题—— Longest Substring Without Repeating Characters(最长无重复子字符串)的更多相关文章
- leetcode第三题--Longest Substring Without Repeating Characters
		
Problem:Given a string, find the length of the longest substring without repeating characters. For e ...
 - leetcode第三题Longest Substring Without Repeating Characters   java
		
Longest Substring Without Repeating Characters Given a string, find the length of the longest substr ...
 - LeetCode 第 3 题(Longest Substring Without Repeating Characters)
		
LeetCode 第 3 题(Longest Substring Without Repeating Characters) Given a string, find the length of th ...
 - 【LeetCode每天一题】Longest Substring Without Repeating Characters(最长无重复的字串)
		
Given a string, find the length of the longest substring without repeating characters. Example 1: ...
 - [LeetCode] Longest Substring Without Repeating Characters 最长无重复子串
		
Given a string, find the length of the longest substring without repeating characters. For example, ...
 - [LeetCode] Longest Substring Without Repeating Characters 最长无重复字符的子串
		
Given a string, find the length of the longest substring without repeating characters. Example 1: In ...
 - [LeetCode] Longest Substring Without Repeating Characters 最长无重复字符的子串 C++实现java实现
		
最长无重复字符的子串 Given a string, find the length of the longest substring without repeating characters. Ex ...
 - [LeetCode] Longest Substring Without Repeating Characters最长无重复子串
		
Given a string, find the length of the longest substring without repeating characters. For example, ...
 - [LeetCode] 3.Longest Substring Without Repeating Characters 最长无重复子串
		
Given a string, find the length of the longest substring without repeating characters. Example 1: In ...
 
随机推荐
- JS中的事件、数组、节点对象处理
			
在JS代码中编写事件一定要保证页面在浏览器中加载时会把事件加载进页面 事件:在代码中可以通过一个动作来触发另一个行为的总称 A:事件的编写方式1 HTML标签中添加 onxxxx = "函数 ...
 - kafka相关业务必会操作命令整理
			
参考:https://kafka.apache.org 服务相关命令 1.启动/停止zk > bin/zookeeper-server-start.sh config/zookeeper.pro ...
 - Node篇
			
[Node篇] Node.js中的stream(流)- 基础篇 1)什么是stream(流) 流(stream)在 Node.js 中是处理流数据的抽象接口(abstract interface). ...
 - DFS问题举例:N个整数选k个使其和为x
			
N个整数选k个使其和为x,若有多个方案,选择元素平方和最大的一个 #include<cstdio> #include<cmath> #include<cstring> ...
 - 内网渗透_win_socks代理_reGeorg+proxifier
			
遇到内网windows机器,如果想远程登陆,通常得通过代理,常用的nc.lcx 工具可满足要求. 如 lcx 示例: 两台机器上均上传lcx.exe 在 xp机器(公网)上执行 lcx.exe -li ...
 - http://localhost:8080 is requesting your username and password
			
after you startup your tomcat, you type a concrete request url in broswer, the tomcat probably wil ...
 - Spring入门(二)
			
Spring IOC&DI 控制反转(inversion of control):控制什么?什么反转? 我们都知道,传统的程序中,如果A类需要使用B类对象,会在程序中直接创建B类对象实例,此时 ...
 - Mysql事务学习笔记
			
Mysql事务学习笔记 1.事务概述 事务是数据库的执行单元,它包含了一条或多条sql语句,进行的操作是要么全部执行,要么全部都不执行. 2.事务执行命令 语法格式: start transactio ...
 - Batch - %~dp0 modifiers
			
%~dp0 简易解释 The variable %0 in a batch script is set to the name of the executing batch file. The ~dp ...
 - kafka保证数据不丢失机制
			
kafka如何保证数据的不丢失 1.生产者如何保证数据的不丢失:消息的确认机制,使用ack机制我们可以配置我们的消息不丢失机制为-1,保证我们的partition的leader与follower都保存 ...