题意很简单,就是寻找一个字符串中连续的最长包含不同字母的子串。

其实用最朴素的方法,从当前字符开始寻找,找到以当前字符开头的最长子串。这个方法猛一看是个n方的算法,但是要注意到由于字符数目的限制,其实这是个O(Cn)的算法,最长也不过是C长度。所以我觉得普通方法应该是能过的。

于是写了一个,字符数目最大也不超过256所以代码如下:

  1. class Solution {
  2. public:
  3. int lengthOfLongestSubstring(string s) {
  4.  
  5. int res=;
  6. for(int i=;i<s.length();i++)
  7. {
  8. int flag[];
  9. memset(flag,,sizeof(flag));
  10. int count = ;
  11. flag[s[i]-' '] = ;
  12. int tempres = ;
  13. for (int j = i + ; j < s.length(); j++) {
  14. if (flag[s[j]-' ']==) {
  15. flag[s[j]-' ']= ;
  16. tempres++;
  17. } else
  18. break;
  19. }
  20. if (tempres > res)
  21. res=tempres;
  22. }
  23. return res;
  24. }
  25. };

其中空格是ASCII码第一个实际意义字符,所以减去‘ ’

正常的O(n)方法是使用哈希表来存已经出现的字符,使用一个指针依次检索,如果碰到已经存在的字符,则去使用第二个指针更新这个哈希表。

从原理上来具体讨论双指针这个算法,对于第一个指针指到的字母有两种情况:

1.从来没有使用过

当前长度加一,将这个位置和字母加入哈希表,第二个指针不动

2.已经使用过,并且有一个哈希表存这个字母的上一个位置

获取上一个位置右侧位置(+1操作),将这个位置和第二个指针比较,

(1)如果小于第二个指针,说明以当前结尾的字符串在第j个指针的地方有字母重复,忽略这个位置,继续以j为准

(2)如果大于第二个指针,说明以当前结尾的字符串在这个最新的位置有重复,将指针移到这个位置,计算这个长度。

这三种情况涵盖了所有可能,并在下面的例子中有相应出现。

代码:

此代码来自最多discuss区最多vote的答案:https://leetcode.com/discuss/23883/11-line-simple-java-solution-o-n-with-explanation

  1. public int lengthOfLongestSubstring(String s) {
  2. if (s.length()==0) return 0;
  3. HashMap<Character, Integer> map = new HashMap<Character, Integer>();
  4. int max=0;
  5. for (int i=0, j=0; i<s.length(); ++i){
  6. if (map.containsKey(s.charAt(i))){
  7. j = Math.max(j,map.get(s.charAt(i))+1);
  8. }
  9. map.put(s.charAt(i),i);
  10. max = Math.max(max,i-j+1);
  11. }
  12. return max;
  13. }

例子:

对于这个字符串:abcbcda

经过初始化循环执行过程如下:

i=0;  j=0;  (a,0)  max(0,1)=1  第一种情况

i=1;  j=0;  (b,1)  max(1,2)=2  同上

i=2;  j=0;  (c,2)  max(2,3)=3  同上

i=3;  j=(0,1+1)=2;  (b,3)  max(3,2)=3  第二种第二个情况

i=4;  j=(2,2+1)=3;  (c,4)  max(3,2)=3  同上

i=5;  j=3;  (d,5)  max(3,3)=3  第一种情况

i=6;  j=(3,1)=3;   (a,6)  max(3,4)=4  第二种第一个情况

   

Longest Substring Without Repeating Characters - 哈希与双指针的更多相关文章

  1. 《LeetBook》leetcode题解(3):Longest Substring Without Repeating Characters[M]——哈希判断重复

    我现在在做一个叫<leetbook>的免费开源书项目,力求提供最易懂的中文思路,目前把解题思路都同步更新到gitbook上了,需要的同学可以去看看 书的地址:https://hk029.g ...

  2. [LeetCode_3] Longest Substring Without Repeating Characters

    LeetCode: 3. Longest Substring Without Repeating Characters class Solution { public: int lengthOfLon ...

  3. Longest Substring Without Repeating Characters (c#)

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

  4. LeetCode3:Longest Substring Without Repeating Characters

    题目: Given a string, find the length of the longest substring without repeating characters. For examp ...

  5. Leetcode经典试题:Longest Substring Without Repeating Characters解析

    题目如下: Given a string, find the length of the longest substring without repeating characters. Example ...

  6. C++版- Leetcode 3. Longest Substring Without Repeating Characters解题报告

    Leetcode 3. Longest Substring Without Repeating Characters 提交网址: https://leetcode.com/problems/longe ...

  7. 3.Longest Substring Without Repeating Characters(string; HashTable)

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

  8. 蜗牛慢慢爬 LeetCode 3. Longest Substring Without Repeating Characters [Difficulty: Medium]

    题目 Given a string, find the length of the longest substring without repeating characters. Examples: ...

  9. LeetCode第[3]题(Java):Longest Substring Without Repeating Characters 标签:Linked List

    题目中文:没有重复字符的最长子串 题目难度:Medium 题目内容: Given a string, find the length of the longest substring without ...

随机推荐

  1. JVM内存最大能调多大分析

    上次用weblogic 把 -XmxXXXX 设成2G,就启动不起来,设小点就起来了,当时很气,怎么2G都起不了,今天在看到了一篇解释,转过来了这 次一位老友提出了这个问题,记得当年一个java高手在 ...

  2. nginx filter

    server { listen 80; server_name g.zcdn.com; index index.html; location / { proxy_cache cache_go; pro ...

  3. mysqldump 利用rr隔离实现一致性备份

    mysqldump -p -S /data/mysqldata1/sock/mysql.sock --single-transaction --master-data=2 --database db1 ...

  4. hdoj 2620 Bone Collector(0-1背包)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2602 思路分析:该问题为经典的0-1背包问题:假设状态dp[i][v]表示前i件物品恰放入一个容量为v ...

  5. OpenStack里的浮动ip

    缺省情况下实例会被赋予固定ip,这时并不能保证实例会马上可以从外面访问到,一般来说需要配置防火墙来允许公共ip,然后建立一条NAT规则从公共ip到私有ip的映射.OpenStack引入了一个叫浮动ip ...

  6. MVC5.0 中如何提高Controller 的优先级

    //在area下建立的Home namespace WebApplication8.Areas.Weather.Controllers { public class HomeController : ...

  7. 第一章 什么是SQL Server Integration Services (ssis) 系统。

    note:我也是刚入门的菜鸟,让我们大家一块学习SSIS系统,工作中需要用到SSIS.您的浏览是我更新的最大动力,谢谢!  SSIS是Microsoft SQL Server Integration ...

  8. OC KVC总结

    在iOS开发中,我们一般使用set方法或者点语法来修改对象的属性值,比如说 stu.age = 9 与 [stu setAge:9]. KVC(key value coding)键值编码,这是一种间接 ...

  9. 将Oracle数据库导出为txt格式

    将Oracle数据库导出为txt格式: 方法1: 对于Windows系统,可以采用以下方式: 选择控制面板-->管理工具-->数据源(ODBC),添加一个新的数据源(系统或用户DSN均可) ...

  10. Spring 之 控制反转(IoC), 依赖注入(DI)和面向切面(AOP)

    关于依赖注入, 这篇博文写的非常简单易懂. https://github.com/android-cn/blog/tree/master/java/dependency-injection 此外, 博 ...