. Day 5 - Challenge 2 - Longest Common Subsequence Skip to main content

Day 5 - Challenge 2 - Longest Common Subsequence

Solving the Longest Common Subsequence Problem using JavaScript

Introduction

The Longest Common Subsequence (LCS) problem is a classic dynamic programming challenge that involves finding the length of the longest subsequence shared between two strings. In this blog post, we will delve into a step-by-step solution to this problem using a dynamic programming approach in JavaScript.

Dynamic Programming Approach

To solve the LCS problem efficiently, we will adopt a dynamic programming strategy. The core idea is to create a 2D table where each cell (i, j) represents the length of the LCS between the first i characters of the first string and the first j characters of the second string.

Let's break down the process of solving this problem:

  1. Initialization: Create a 2D array dp of dimensions (m+1) x (n+1), where m and n are the lengths of the two input strings.

  2. Iteration: Use nested loops to iterate over each character in the two strings. Let i denote the current index in the first string and j denote the current index in the second string.

  3. Comparison: If the characters at indices i and j are the same, increment the value in dp[i+1][j+1] by 1 compared to dp[i][j]. This indicates that the current character is part of the LCS.

  4. Updating Table: If the characters are not the same, set dp[i+1][j+1] to the maximum of dp[i][j+1] and dp[i+1][j]. This step considers the possibility that the current character is either part of the LCS or not.

  5. Final Result: After completing the loops, the value at dp[m][n] represents the length of the longest common subsequence.

  6. Return: Return the value at dp[m][n] as the answer to the problem.

JavaScript Implementation

Here's the JavaScript code that implements the dynamic programming approach to solve the Longest Common Subsequence problem:


function longestCommonSubsequence(text1, text2) {
    const m = text1.length;
    const n = text2.length;
    const dp = new Array(m + 1).fill(0).map(() => new Array(n + 1).fill(0));

    for (let i = 0; i < m; i++) {
        for (let j = 0; j < n; j++) {
            if (text1[i] === text2[j]) {
                dp[i + 1][j + 1] = dp[i][j] + 1;
            } else {
                dp[i + 1][j + 1] = Math.max(dp[i][j + 1], dp[i + 1][j]);
            }
        }
    }

    return dp[m][n];
}

const text1 = "abcdef";
const text2 = "acef";
console.log("Length of Longest Common Subsequence:", longestCommonSubsequence(text1, text2));

Demo

Longest Common Subsequence Demo


Conclusion

The dynamic programming approach is a powerful technique for solving the Longest Common Subsequence problem efficiently. By breaking down the problem into smaller subproblems and utilizing a table to store intermediate results, we can calculate the length of the longest subsequence shared between two strings. This approach has broad applications in various scenarios where sequence matching is essential.

Now write the same program in your favorite language in comment section. 

Other Challenges:

  1. Day 2 Challenges
  2. Day 3 Challenges
  3. Day 4 Challenges

 

Comments

Popular posts from this blog

Day 9 - Challenge 1 - Product of Array Except Self

Solving the "Product of Array Except Self" Problem in JavaScript Are you ready to dive into a common coding challenge that not only tests your programming skills but also sharpens your problem-solving mindset? If you're up for the challenge, let's tackle the "Product of Array Except Self" problem together using JavaScript. This problem requires us to return an array where each element at index i is the product of all the elements in the original array except the one at index i . Understanding the Problem:   Imagine you're given an array of integers, let's call it nums . Your task is to create a new array where the value at index i in this new array is the product of all the elements in nums , except the one at index i . In other words, you're calculating the product of all the elements to the left of nums[i] and the product of all the elements to the right of nums[i] , and then multiplying these two products to get the final value at index i ...

Day 9 - Challenge 2 - Reverse Linked List

Reversing a Singly Linked List in JavaScript: An In-Place Approach Introduction:   Singly linked lists are fundamental data structures in computer science that consist of a sequence of nodes, each containing data and a reference to the next node in the list. Reversing a singly linked list is a classic problem that challenges programmers to manipulate pointers effectively to achieve the desired outcome. In this blog post, we'll explore the problem of reversing a singly linked list using an in-place approach and provide a step-by-step solution in JavaScript. Problem Statement:   Given the head of a singly linked list, our task is to reverse the list in-place and return its new head. In other words, we need to modify the pointers of the nodes in such a way that the direction of the linked list is reversed. Solution Approach:   To solve this problem, we will iterate through the linked list while maintaining three pointers: previous , current , and next . The previous pointer...

Day 8 - Challenge 2 - Move Zeroes to the End

Moving Zeroes to the End: A JavaScript Solution Introduction:   When working with arrays, there are often times when we need to manipulate their elements to achieve a specific goal. One common problem is moving all zeroes to the end of an array while keeping the order of non-zero elements unchanged. In this blog post, we will explore an elegant solution to this problem using JavaScript. We'll discuss the problem statement, the approach we'll take, and provide a step-by-step guide to implementing the solution. The Problem:   Given an array of integers, the task is to move all zeroes to the end of the array while maintaining the relative order of the non-zero elements. This means that after rearranging the array, all the zeroes should be at the end, and the order of the non-zero elements should remain the same. The Approach:   To solve this problem, we can utilize a two-pointer approach. We'll maintain two pointers, one for iterating through the array and another for keepin...