问题描述
- 多个字符串中的最大公共子字符串 。
-
找出多个字符串中的最大公共子字符串,如“nbitheimanb”和“itheia”的最大子串是:”ithei”。(C语言)
谢谢!!!
解决方案
解决方案二:
http://blog.sina.com.cn/s/blog_6de422830102v18k.html
http://blog.chinaunix.net/uid-22929-id-2604691.html
http://blog.csdn.net/jianzhibeihang/article/details/4985276
解决方案三:
先存到char[],然后一项一项匹配,匹配次数最多的那个就是了
时间: 2024-12-01 21:39:40