摘要: 问题描述 给定一个字符串,找出不含有重复字符的最长子串的长度。 解法一: 创建一个 pre 数组表示长度,从左到右遍历字符串数组。 public static int lengthOfLongestSubstringMethod(String s){ // 数组没有赋值的时,所有元素会初始化为 0 阅读全文
posted @ 2020-11-05 21:05 泉水姐姐。 阅读(121) 评论(0) 推荐(0) 编辑