-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathlongestCommonSubstring.java
45 lines (44 loc) · 1.15 KB
/
longestCommonSubstring.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication3;
/**
* @date 03/01/1998
* @author SPREEHA DUTTA
*/
import java.util.*;
public class longestCommonSubstring {
static int max=0;static String sm;
public static void generate(String s,String st)
{
String str;
for(int i=0;i<=s.length()-1;i++)
{
for(int j=i+1;j<=s.length();j++)
{
str=s.substring(i,j);
if(st.contains(str))
{
if(max<str.length())
{
max=str.length();
sm=str;
}
}
}
}
}
public static void main(String []args)
{
Scanner sc=new Scanner(System.in);
String s1,s2;
System.out.println("Enter the two strings ");
s1=sc.next();
s2=sc.next();
generate(s1,s2);
generate(s2,s1);
System.out.println("Longest common substring is "+sm);
}
}