Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,931 questions

51,868 answers

573 users

How to find the length of longest common subsequence (LCS) present in two strings with JavaScript

1 Answer

0 votes
function mymax(a, b) {
    return (a > b) ? a : b;
}
  
function lcs(s1, s2, s1_len, s2_len) {
    if (s1_len == 0 || s2_len == 0) {
        return 0;
    }
    if (s1[s1_len - 1] == s2[s2_len - 1]) {
        return 1 + lcs(s1, s2, s1_len - 1, s2_len - 1);
    }
    else {
        return mymax(lcs(s1, s2, s1_len, s2_len - 1), lcs(s1, s2, s1_len - 1, s2_len));
    }
}
   
   
var s1 = "accyrb";
var s2 = "cyxyazb";
 
document.write("The length of LCS is: " + lcs(s1, s2, s1.length, s2.length));


/*
run:
    
The length of LCS is: 3 
    
*/

 



answered Jun 7, 2019 by avibootz
...