LeetCode算法题

2020-12-13 04:09

阅读:483

标签:算法   while   solution   个数   nbsp   ==   长度   turn   find   

1、给两个整数数组 A 和 B ,返回两个数组中公共的、长度最长的子数组的长度。

 时间复杂度待优化

class Solution {
    public int findLength(int[] A, int[] B) {
        int l=0;
        int lena=A.length;
        int lenb=B.length;
        for(int i=0;i){
            int temp=i;
            for(int j=0;j){
                int sl=0;
                int tmp=j;
                while(iB[j]){
                    i++;
                    j++;
                    sl++;
                }
             if(sl>l){
                l=sl;
            }
                i=temp;
                j=tmp;
            }
        }
        return l;
    }
}

 

LeetCode算法题

标签:算法   while   solution   个数   nbsp   ==   长度   turn   find   

原文地址:https://www.cnblogs.com/yangyongjie/p/11105224.html


评论


亲,登录后才可以留言!