Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

PySeqLCS (Python Sequence Longest Common Subsequence)

This program is designed to find the Longest Common Subsequence (LCS) between two strings using various techniques:

  • Iterative Approach (I)
  • Recursive Function without memoization (D)
  • Recursive Function with memoization (LCS)
  • Memoization Technique (M)

To use this program, update the strings in the code and run it to obtain the LCS between the provided sequences.

Enjoy exploring the different methods to compute LCS and compare their efficiencies!

Feel free to update the strings (x, y, and z) in the code to find the LCS between your desired sequences.

About

This Python program calculates the Longest Common Subsequence (LCS) between two given strings using different methods, including recursive approaches, an iterative method, and a memoization technique

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages