码迷,mamicode.com
首页 > 其他好文 > 详细

#3 Longest Substring Without Repeating Characters

时间:2020-03-22 19:48:22      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:inpu   with   index   abc   inline   位置   记录   substr   子串   

#3 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.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解题思路

利用滑动窗口和哈希map。

技术图片

首先对字字符串进行遍历,每读取一个元素,都要找到上一个与当前元素重复的index,记为flag。利用字典储存某个元素及其最后出现的位置。

时间复杂度:\(O(n)\),依次遍历

空间复杂度:\(O(1)\),常数级存储空间用于储存字符串

代码解释

line 9:flag从-1开始记录,因为第一个元素开始 的长度为\(0-(-1)=1\)

line 19:只有在存入新字符的时候才会更新最长不重复子串的常数

Github

#3 Longest Substring Without Repeating Characters

标签:inpu   with   index   abc   inline   位置   记录   substr   子串   

原文地址:https://www.cnblogs.com/LvBaiYang/p/12547739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!