牛客网编程高频题15——NC41找到字符串的最长无重复字符子串

本文介绍了四种方法解决字符串中无重复字符子串的查找问题,包括暴力搜索、链表、哈希map,并特别强调了一种快速算法。方法四通过lastPos数组实现,显著提升了效率。同时,针对给定数组的无重复子串问题也提供了解决方案。
摘要由CSDN通过智能技术生成

目录

找到字符串的最长无重复字符子串

题目描述

示例1

输入

返回值

示例2

输入

返回值

备注:

方法一:暴力搜索

方法二:链表

方法三:Hashmap

方法四


 

找到字符串的最长无重复字符子串

题目描述

给定一个数组arr,返回arr的最长无的重复子串的长度(无重复指的是所有数字都不相同)。

示例1

输入

[2,3,4,5]

返回值

4

示例2

输入

[2,2,3,4,3]

返回值

3

备注:

51 \le n \le105

 

方法一:暴力搜索

import java.util.*;


public class Solution {
    /**
     * 
     * @param arr int整型一维数组 the array
     * @return int整型
     */
    public int maxLength (int[] arr) {
        // write code here
        if(arr.length==1) return 1;
        int maxlen=1;
        for (int i = 0; i < arr.length; i++) {
            HashMap<Integer,Integer> map=new HashMap();
            map.put(arr[i],i);
            int len=1;
            for (int j = i+1; j < arr.length; j++) {
                if(map.containsKey(arr[j])){
                    maxlen=Math.max(maxlen,len);
                    break;
                }else{
                    map.put(arr[j],j);
                    len++;
                }
            }
        }
        return maxlen;
    }
}

 时间消耗确实很慢,

 

方法二:链表

用LinkedList的removeFirst()调整list的长度并记录

例如:{2,3,4,3}遇到重复元素,remove之后是{4,3}

import java.util.*;


public class Solution {
    /**
     * 
     * @param arr int整型一维数组 the array
     * @return int整型
     */
    public int maxLength (int[] arr) {
        // write code here
        LinkedList<Integer> list = new LinkedList<>();
        int p=0, ans=0;
        for(int i=0;i<arr.length;i++){
            if(list.contains(arr[i])){
                int j=list.indexOf(arr[i]);
                while (j-->=0){
                    list.removeFirst();
                }
            }
            list.add(arr[i]);
            ans=Math.max(ans,list.size());
        }
        return ans;
    }
}

时间和空间消耗都得到了较大的改善,

 

方法三:Hashmap

import java.util.*;


public class Solution {
    /**
     * 
     * @param arr int整型一维数组 the array
     * @return int整型
     */
    public int maxLength (int[] arr) {
        // write code here
        HashMap<Integer,Integer> map = new HashMap<>();
        int max = 1;
        for(int start = 0, end = 0; end<arr.length ; end++){
            if(map.containsKey(arr[end])){//重复了
                start = Math.max(start, map.get(arr[end])+1);
            }
            max = Math.max(max , end-start+1);
            map.put(arr[end],end);
        }
        return max;
    }
}

 

方法四

该方法最快

import java.util.*;


public class Solution {
    /**
     * 
     * @param arr int整型一维数组 the array
     * @return int整型
     */
    public int maxLength (int[] arr) {
        // write code here
        int[] lastPos = new int[100005];
        int len = arr.length;
        int start = 0;
        int res = 0;
        for(int i =0;i<len;i++){
            int now = arr[i];
            start = Math.max(start,lastPos[now]);
            res = Math.max(res,i-start+1);
            lastPos[now] = i+1;
        }
          
        return res;
    }
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值