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,937 questions

51,874 answers

573 users

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

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));
    }
}
   
   
$s1 = "accyrb";
$s2 = "cyxyazb";
 
echo "The length of LCS is: " . lcs($s1, $s2, strlen($s1), strlen($s2));
   

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

 



answered Jun 7, 2019 by avibootz
...