摘要: // 求a b 两个字符串的编辑距离 // a b // 0 1 // a 0 // b 1 // c 2 int calTwoStr(string a, string b){ int aSize = a.length(); int bSize = b.length(); int dp[bSize] 阅读全文
posted @ 2020-10-25 21:52 威威后花园 阅读(230) 评论(0) 推荐(0)
摘要: 傻瓜式安装c++的环境 step1: 下载安装vs code 下载地址: https://code.visualstudio.com/ step2: vs code内下载使用插件,如下图下载安装3个插件即可 step3 写c++代码,就可以运行了 阅读全文
posted @ 2020-10-25 15:19 威威后花园 阅读(177) 评论(0) 推荐(0)