Skip to content

Commit 94495e6

Browse files
committed
2020.02.23
1 parent b341b04 commit 94495e6

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
| 0049 | 多线程 | [Accepted](huawei/0049.cpp) | |
5555
| 0050 | 四则运算 | [Accepted](huawei/0050.cpp) | |
5656
| 0051 | 输出单向链表中倒数第k个结点 | [Accepted](huawei/0051.cpp) | |
57-
| 0052 | 计算字符串的距离 | [Accepted](huawei/0052.cpp) | |
57+
| 0052 | 计算字符串的距离 | [Accepted](huawei/0052.cpp) | [levenshtein距离]( ) |
5858
| 0053 | iNOC产品部-杨辉三角的变形 | [Accepted](huawei/0053.cpp) | |
5959
| 0054 | 表达式求值 | [Accepted](huawei/0054.cpp) | |
6060
| 0055 | (练习用)挑7 | [Accepted](huawei/0055.cpp) | |
@@ -67,7 +67,7 @@
6767
| 0062 | 查找输入整数二进制中1的个数 | [Accepted](huawei/0062.cpp) | |
6868
| 0063 | DNA序列 | [Accepted](huawei/0063.cpp) | |
6969
| 0064 | MP3光标位置 | [Accepted](huawei/0064.cpp) | |
70-
| 0065 | 查找两个字符串a,b中的最长公共子串 | [Accepted](huawei/0065.cpp) | |
70+
| 0065 | 查找两个字符串a,b中的最长公共子串 | [Accepted](huawei/0065.cpp) | [最长公共子串]( ) |
7171
| 0066 | 配置文件恢复 | [Accepted](huawei/0066.cpp) | |
7272
| 0067 | 24点游戏算法 | [Accepted](huawei/0067.cpp) | |
7373
| 0068 | 成绩排序 | [Accepted](huawei/0068.cpp) | |
@@ -76,11 +76,11 @@
7676
| 0072 | 百钱买百鸡问题 | [Accepted](huawei/0072.cpp) | |
7777
| 0073 | 计算日期到天数转换 | [Accepted](huawei/0073.cpp) | |
7878
| 0074 | 参数解析 | [Accepted](huawei/0074.cpp) | |
79-
| 0075 | 公共字串计算 | [Accepted](huawei/0075.cpp) | |
79+
| 0075 | 公共字串计算 | [Accepted](huawei/0075.cpp) | [最长公共子串]( ) |
8080
| 0076 | 尼科彻斯定理 | [Accepted](huawei/0076.cpp) | |
81-
| 0077 | 火车进站 | [Accepted](huawei/0077.cpp) | |
81+
| 0077 | 火车进站 | [Accepted](huawei/0077.cpp) | [堆栈]( ) |
8282
| 0078 | 超长正整数相加 | [Accepted](huawei/0078.cpp) | [模拟加法]( )|
83-
| 0079 | 计算字符串的相似度 | [Accepted](huawei/0079.cpp) | |
83+
| 0079 | 计算字符串的相似度 | [Accepted](huawei/0079.cpp) | [levenshtein距离]( ) |
8484
| 0080 | 整形数组合并 | [Accepted](huawei/0080.cpp) | |
8585
| 0081 | 字符串匹配 | [Accepted](huawei/0081.cpp) | |
8686
| 0082 | 将真分数分解为埃及分数 | [Accepted](huawei/0082.cpp) | |

huawei/0052.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// 0052.计算字符串的距离
2+
// keywords: levenshtein距离
23

34
#include <iostream>
45
#include <cmath>

huawei/0065.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// 0065.查找两个字符串a,b中的最长公共子串
2+
// keywords: 最长公共子串
23

34
#include <iostream>
45
using namespace std;

huawei/0075.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// 0075.公共字串计算
2+
// keywords: 最长公共子串
23

34
#include <iostream>
45
using namespace std;

huawei/0077.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// 0077.火车进站
2+
// keywords: 堆栈
23

34
#include <iostream>
45
#include <queue>

huawei/0079.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// 0079.计算字符串的相似度
2+
// keywords: levenshtein距离
23

34
#include <iostream>
45
#include <cmath>

0 commit comments

Comments
 (0)