Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: find LCS

  1. #1
    Junior Member
    Join Date
    Nov 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default find LCS

    Hey I have a algoritm
    that should get the longest comnon subseqquence
    between two strings
    public class Find {
     
    public static String find(String str1, String str2)
    {
    int i, j;
    int m = str1.length();
    int n = str2.length();
     
    String[][] b = new String [m][n];
     
    for (int s = 1; s<m; s++)
    b[s][0] = "";
    for (int z = 1; z<n; z++)
    b[0][z] = "";
     
    for (i = 1; i<m; i++)
    for(j = 1; j<n; j++)
    {
    if(str1.charAt(i-1) == str1.charAt(j-1))
    b[i][j] = b[i-1][j-1]+str1.charAt(+1);
    else if(b[i-1][j].length() >= b[i][j-1].length())
    b[i][j]= b [i-1][j];
    else
      b[i][j] = b[i][j-1];
    }
    return b [m-1][n-1]
    }
    public static void main (String[] args)
    {
    String str1 = "abcs"
    String str2 = "sac"
    System.out.print(find(str1,str2));
    }

    so if you would impliment
    two strings: "abcs" and "sac"
    it should create a matrix that should look like this

    "" "" "" ""
    "" "" "a" "a"
    "" "" "a" "a"
    "" "" "a" "ac"
    "" "s" "s" "ac"

    with the ac as the common between the two
    problem is that Ive tried to run it but doesent get this result
    when i run it.
    can anyone help here?


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: find LCS

    First, missing a few semi-colons so as is this won't compile. Second,
    if(str1.charAt(i-1) == str1.charAt(j-1))
    I believe you want to compare str1 to str2, not str1 to itself. Next, you should take into account the added first row/column padding for the matrix, so you need to iterate through the matrix taking this into account

Similar Threads

  1. Can't Find Problem
    By aussiemcgr in forum What's Wrong With My Code?
    Replies: 7
    Last Post: August 15th, 2010, 09:42 AM
  2. cannot find symbol Error
    By bananasplitkids in forum What's Wrong With My Code?
    Replies: 2
    Last Post: March 9th, 2010, 02:36 AM
  3. Why the compiler can not find the symbol?
    By AlicNewbie in forum What's Wrong With My Code?
    Replies: 1
    Last Post: February 16th, 2010, 08:16 PM
  4. I can't find out what is wrong with my code. Please Help!
    By hallor618 in forum What's Wrong With My Code?
    Replies: 3
    Last Post: February 10th, 2010, 02:44 PM
  5. where can i find the tmp/foo directory?
    By Idy in forum Java IDEs
    Replies: 11
    Last Post: January 19th, 2010, 11:21 AM