书法字典:https://www.shufadict.com

DP_LCS

 

The Longest Common Subsequence problem

Give two strings a and b. return the length of the longest common subsequence of them.

Note: characters in subsequence needn’t to be consecutive, but in substring, it is

For example, string a = “abcdefg”, string b = “bcdg”, Then, the longest commons subsequence is “bcdg”, but the longest common substring is “bcd”.

 

Analysis:

Most DP problem needs to hold an array to store the partial solutions, so does this one.

Assume t[,] is the array to hold the solution, t[i, j] means the length of the LCS between a0a1…ai-1ai and b0b1…bj-1bj, And we can compute t[i,j] in such way

  • If(a[i] == b[j]) then increase the length by 1

t[i, j] = t[i – 1, j – 1] + 1

  • else

t[i, j] = max(t[i – 1, j], t[i, j – 1]) ;

 

How to initialize array t? If string a or string b is empty, then the length will be 0. So we initialize the first row and first column of t to 0, and we need an extra row and column to hold these 0s

The following table shows you the detail steps to compute the solution

 

First, initialize array t

 

Index a

0

1

2

3

4

5

Index b

 

 

a

b

c

d

e

0

 

0

0

0

0

0

0

1

b

0

 

 

 

 

 

2

c

0

 

 

 

 

 

3

e

0

 

 

 

 

 

 

Compute the first row

 

Index a

0

1

2

3

4

5

Index b

 

 

a

b

c

d

e

0

 

0

0

0

0

0

0

1

b

0

0

1

1

1

1

2

c

0

 

 

 

 

 

3

e

0

 

 

 

 

 

 

Compute the second row

 

Index a

0

1

2

3

4

5

Index b

 

 

a

b

c

d

e

0

 

0

0

0

0

0

0

1

b

0

0

1

1

1

1

2

c

0

0

1

2

2

2

3

e

0

0

1

2

2

3

So the result is the last element 3

When you compute any value t[i,j]in the table, first see if a[i] == b[j], it that’s true

Then t[i,j] wil be it’s upper left value in table plus one, t[1,2] is the case

Because b[1] = ‘b’,a[2] = ‘b’, so t[1,2] == t[0,1] + 1 = 0 + 1 = 1. if that’s false(a[i] != b[j]), then t[i,j] will be the max value between it’s left value and up value in the table, t[1,3] is in this case, since b[1] = ‘b’, and a[3] = ‘c’, they are different, so t[1,3] = max(t[1, 2] + t[0,3])=max(1,0)=1 , repeat this process until you get the last element of table t. that’s the value you want.

 

See code

Code

 

posted on   翰墨小生  阅读(556)  评论(1编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述

导航

< 2009年6月 >
31 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 1 2 3 4
5 6 7 8 9 10 11
书法字典:https://www.shufadict.com
点击右上角即可分享
微信分享提示