• [LeetCode] Longest Substring Without Repeating Characters 最长无重复字符的子串

    时间:2023-12-10 10:56:14

    Given a string, find the length of the longest substring without repeating characters.Example 1:Input: "abcabcbb"Output: 3Explanation: The answer is "...

  • [LeetCode] Longest Substring Without Repeating Characters最长无重复子串

    时间:2023-12-10 10:51:17

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

  • 【LeetCode】3.Longest Substring Without Repeating Characters 最长无重复子串

    时间:2023-12-10 10:40:26

    题目:Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the len...

  • LeetCode Longest Substring Without Repeating Characters 最长不重复子串

    时间:2023-12-10 10:32:44

    题意:给一字符串,求一个子串的长度,该子串满足所有字符都不重复。字符可能包含标点之类的,不仅仅是字母。按ASCII码算,就有2^8=128个。思路:从左到右扫每个字符,判断该字符距离上一次出现的距离是多少,若大于max,则更新max。若小于,则不更新。每扫到一个字符就需要更新他的出现位置了。这里边还...

  • [LeetCode] Longest Substring Without Repeating Characters 最长无重复字符的子串 C++实现java实现

    时间:2023-12-10 10:30:10

    最长无重复字符的子串Given a string, find the length of the longest substring without repeating characters.Example 1:Input: "abcabcbb"Output: 3Explanation: The a...

  • 003 Longest Substring Without Repeating Characters 最长不重复子串

    时间:2023-12-10 10:30:16

    Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length...

  • [LeetCode] 3.Longest Substring Without Repeating Characters 最长无重复子串

    时间:2023-12-10 10:27:57

    Given a string, find the length of the longest substring without repeating characters.Example 1:Input: "abcabcbb"Output: 3Explanation: The answer is "...

  • 字符串和数组中split().toString(),join(),splice(),slice(),substr()和substring()

    时间:2023-12-04 14:25:30

    <!Doctype html> <head> <mate charset="utf-8"> <title>string change array</title> </head> <body> <script&...

  • CodeForces - 873B Balanced Substring(思维)

    时间:2023-12-03 13:36:53

    inputstandard input outputstandard output You are given a string s consisting only of characters 0 and 1. Asubstring [l, r] of s is a string slsl + 1s...

  • HDU 5677 ztr loves substring

    时间:2023-11-28 08:31:52

    Manacher+二维费用多重背包 二进制优化这题是一眼标算....先计算出每个长度的回文串有几种,然后用二维费用的多重背包判断是否有解。多重背包做的时候需要二进制优化。#include<cstdio>#include<cstring>#include<cmath>...

  • 395. Longest Substring with At Least K Repeating Characters

    时间:2023-11-27 18:42:28

    395. Longest Substring with At Least K Repeating Characters我的思路是先扫描一遍,然后判断是否都满足,否则,不满足的字符一定不出现,可以作为分割符,然后不断切割,重复这个过程,我不知道运行时间,感觉会tle,然后交了,就ac了。class S...

  • LeetCode题解——Longest Palindromic Substring

    时间:2023-11-25 12:20:41

    题目:给定一个字符串S,返回S中最长的回文子串。S最长为1000,且最长回文子串是唯一。解法:①遍历,对于每个字符,计算以它为中心的回文子串长度(长度为奇数),同时计算以它和右边相邻字符为中心的回文子串长度(长度为偶数)。时间为O(N2)。②另外,有一个很奇妙的算法,称为Manacher算法,参考 ...

  • JavaScript substring() 方法

    时间:2023-11-23 15:07:54

    定义和用法substring() 方法用于提取字符串中介于两个指定下标之间的字符。语法stringObject.substring(start,stop)参数描述start必需。一个非负的整数,规定要提取的子串的第一个字符在 stringObject 中的位置。stop可选。一个非负的整数,比要提取...

  • LeetCode "Longest Substring with At Most K Distinct Characters"

    时间:2023-11-21 10:39:19

    A simple variation to "Longest Substring with At Most Two Distinct Characters". A typical sliding window problem.class Solution {public: int length...

  • LeetCode3 Longest Substring Without Repeating Characters

    时间:2023-11-18 17:58:09

    题意:Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the len...

  • Js中的subStr和subString的区别

    时间:2023-11-17 15:33:14

    /** * Created by lonecloud on 16/9/8. */var str="HelloWorld";/** * 这里的两个参数第一个是从0到第几个开始第二个参数为是长度 * substr(begin,length) */alert(str.substr(2,5));//lloW

  • js中substr,substring,indexOf,lastIndexOf的用法小结

    时间:2023-11-14 14:49:00

    第一组:str.substr(start,length) 和 str.substring(start,end)定义:str.substr(start,length)substr(start,length)表示从start位置开始,截取length长度的字符串。var src="data:images...

  • js中 substr(), substring(), slice()的区别

    时间:2023-11-14 14:45:26

    一、作用三者都是基于原字符串创建新字符串的方法。接收一到两个参数,第一个参数截取字符串的开始位置(字符下标,从0开始),第二个参数因方法不同而不同,后面不同点会说到。另外,三个方法都不会修改原字符串的值。二、相同点都可以传入一个或两个参数只传入一个参数时,都表示从指定下标,截取字符串长度,直到字符串...

  • js中substr,substring,indexOf,lastIndexOf等的用法

    时间:2023-11-14 14:39:05

    1.substrsubstr(start,length)表示从start位置开始,截取length长度的字符串。var src="data:images/off_1.png";alert(src.substr(7,3));弹出值为:off2.substringsubstring(start,end)...

  • JS中substr与substring的区别

    时间:2023-11-14 14:31:28

    js中substr和substring都是截取字符串中子串,非常相近,可以有一个或两个参数。语法:substr(start [,length]) 第一个字符的索引是0,start必选 length可选substring(start [, end]) 第一个字符的索引是0,start必选 end可选相...