In each example you'll somehow compare two sequences, and you'll use a two-dimensionaltable to store the solutions to subproblems.
在每个示例中,都会比较两个序列,而且将使用二维表格存储子问题的解。
2
Again, you have a two-dimensionaltable with one sequence along the top and one along the left side. Again, you can arrive at each cell in one of three ways.
这个算法也使用二维表格,一个序列沿顶部展开,一个序列沿左侧展开。
3
You will take advantage of this by implementing your state table as a two-dimensional associative array of functions.