Here you can find the source of lcs1(int[] A, int[] B)
public static int lcs1(int[] A, int[] B)
//package com.java2s; /*/*from www . jav a 2s . com*/ * org.fsola * * File Name: LongestCommonSubsequence.java * * Copyright 2014 Dzhem Riza * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class Main { public static int lcs1(int[] A, int[] B) { return lcs1impl(A, B, 0, 0); } public static int lcs1impl(int[] A, int[] B, int I, int J) { if (A.length <= I || B.length <= J) { return 0; } int max = 0; for (int i = I; i < A.length; ++i) { for (int j = J; j < B.length; ++j) { if (A[i] == B[j]) { int c = lcs1impl(A, B, i + 1, j + 1) + 1; if (max < c) { max = c; } } } } return max; } }