摘要:
一、测试程序 1 /* 2 * 最长回文子串长度 3 * 4 */ 5 6 #include <stdio.h> 7 #include <string.h> 8 9 #define MAX(a, b) (a)>(b) ? (a):(b) 10 11 int get_lps_len(unsigned 阅读全文
posted @ 2020-08-06 10:12
Zackary丶Liu
阅读(138)
评论(0)
推荐(0)
摘要:
一、测试输入: abbcdecb 二、经转移公式推导: 三、测试程序 1 /* 2 * 最长回文子系列 3 * 4 */ 5 6 #include <stdio.h> 7 #include <stdlib.h> 8 #include <string.h> 9 10 #define MAX(a, b) 阅读全文
posted @ 2020-08-06 10:11
Zackary丶Liu
阅读(132)
评论(0)
推荐(0)
摘要:
一、测试输入: LOOP HELLOWORLD 二、经转移公式推导: 三、测试程序 1 /* 2 * 最长公共子串长度 3 * 4 */ 5 6 #include <stdio.h> 7 #include <stdlib.h> 8 #include <string.h> 9 10 #define M 阅读全文
posted @ 2020-08-06 10:07
Zackary丶Liu
阅读(121)
评论(0)
推荐(0)

浙公网安备 33010602011771号