/** * min edit cost * @param str1 string字符串 the string * @param str2 string字符串 the string * @param ic int整型 insert cost * @param dc int整型 delete cost * @param rc int整型 replace cost * @return int整型 */ function minEditCost( str1 , str2 , ic , dc , rc ) { // write code here /** 动态规划...