您的位置:首页 > 其它

Edit Distance

2016-05-02 16:22 211 查看

1/4 题目描述

Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2.

(each operation is counted as 1 step.)

You have the following 3 operations permitted on a word:

a) Insert a character

b) Delete a character

c) Replace a character

2/4 思路分析

3/4 代码实现

I/II c语言

II/II java

4/4知识点分析

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: