Question:

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.

问题描述:

给一个字符串,找出这个字符串的无重复字符的最长子串的长度。

实例:

1,“abcabcbb”的最长子串是“abc”,长度为3。

2,“bbbbb”的最长子串是“b”,长度为1。

3,“pwwkew”的最长子串是“wke”,长度为3。

解题思路:

这个题的关键在于重复的字符!

一个子串不可能出现重复的字符,那么我们可以用两个指针,一个指针用来遍历字符串,两个指针之间保持无重复字符,那么两个指针之间的长度即最大子串的长度。当发现有重复的字符时,另一个指针指向这个字符上一次出现的位置的下一个字符,继续遍历,直到找到最长子串。

代码示例:

 public int lengthOfLongestSubstring(String s) {
if (s.length()==0) return 0;
HashMap<Character, Integer> map = new HashMap<Character, Integer>();
int max=0;
for (int i=0, j=0; i<s.length(); ++i){
if (map.containsKey(s.charAt(i))){
j = Math.max(j,map.get(s.charAt(i))+1);
}
map.put(s.charAt(i),i);
max = Math.max(max,i-j+1);
}
return max;
}

最新文章

  1. [Erlang 0109] From Elixir to Erlang Code
  2. Autofac 的构造函数注入方式
  3. IOS开发之—— 客服QQ(调用qq网页聊天),客服热线(拨打电话)
  4. linux tricks 之 container_of.
  5. RFID第二次作业
  6. 关于.NET邮件的收发问题总结
  7. 下拉选择框加listview删除
  8. 升级iOS10后SearchController焦点无法获取的问题
  9. 使用Spring MVC 的表单控制器SimpleFormController
  10. QML之TextEdit
  11. 【转】java jawin api 中文 invoke方法
  12. Preemption Context Switches 和 Synchronization Context Switches
  13. avalon组件
  14. IOS开发之路三(XML解析之GDataXML的使用)
  15. SuperSocket 最基础入门
  16. Akamai CDN
  17. 聊一聊JS的原型链之高级篇
  18. 第n次搭建 SSM 框架
  19. C# 初识Redis
  20. LeetCode--035--搜索插入位置(java)

热门文章

  1. python读取写入内存方法SringIO,BytesIO
  2. 第五周linux学习笔记
  3. activity 与 service 之间的通信
  4. 【trie树】【P4551】 最长异或路径
  5. 图解HTTP(六)HTTP首部
  6. Linux系统时间函数
  7. C陷阱与缺陷的个人知识点摘录
  8. ppp协议介绍(转)
  9. Jenkins和Gitblit集成实现提交后自动构建
  10. Service Fabric Placement and Load Balancing