博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode #3. Longest Substring Without Repeating Characters C#
阅读量:6329 次
发布时间:2019-06-22

本文共 1538 字,大约阅读时间需要 5 分钟。

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.

 

Solution:

Use two-pointer and HashTable to solve. 

Keep p1 at the beginning of the substring and move p2, add characters to hash table and keep the index as value,

if map contains s[p2] then need to  move p1 to the right of the duplicated char index, then update the index of map[s[p2]] to p2; 

also p1 and p2 should only move forward; 

ex) "abba" when p1=0, p2 = 2, we met the second 'b' then p1 should move to 2, and p2 stay at 2.

then when p1=2, p2=3 we met the second a, p1 should never move back to index 1 to start over;

Before come up with this solution, my solution was to clear the map and move p1 to the right of the first duplicated char, and same to p2 then go through again and add to map, 

This method worst case runtime is O(n2), so exceeded the time Limited

 

1 public class Solution { 2     public int LengthOfLongestSubstring(string s) { 3         if(string.IsNullOrEmpty(s)) 4         { 5             return 0; 6         } 7         int l = s.Length; 8         int max = 0; 9         int p1=0;10         int p2=0;11         Dictionary
map = new Dictionary
();12 while(p2

 

转载于:https://www.cnblogs.com/MiaBlog/p/6127857.html

你可能感兴趣的文章
SVN版本管理系统最佳应用实践
查看>>
sed ‘N,P,D,lable循环’高级应用综合实例
查看>>
依赖属性之“风云再起”
查看>>
Linux中内存buffer和cache的区别
查看>>
在CentOS6上编译安装http2.4
查看>>
Pycharm安装pip pip安装第三方模块
查看>>
cobbler安装centos 7系统
查看>>
使用高级特性增强网络稳定性探究
查看>>
Android自定义View探索(二)—常用工具
查看>>
[开源c-FFMpeg]Android add prebuilt lib(*.so) to Android.mk
查看>>
渗透测试工具(老外整理的)
查看>>
利用redis-sentinel+keepalived实现redis高可用
查看>>
代理服务器连接Internet,打开 excel2013时,会跳出需要连接网络的对话框
查看>>
Django学习系列之用户注册
查看>>
cdecl和stdcall调用约定的汇编代码对比
查看>>
RHEL 5服务篇—LAMP平台的部署及应用
查看>>
从优秀到卓越——反思应该如何创业
查看>>
Aperlib——Socket通讯模块压力及大数据对比工具
查看>>
Skype For Business2015 监控-存档服务器配置介绍
查看>>
linux中install命令基本用法
查看>>