【字符串处理算法】字符串包含的算法设计及C代码实现

开发 开发工具 算法
今天讲一讲字符串包含的算法设计及C代码实现。

一、需求描述

给定一个长字符串和一个短字符串,编写程序判断短字符串中的所有字符是否都在长字符串中。如果是,则长字符串包含短字符串;反之,不包含。

为了尽量包含大多数情况,字符串中可以包含大小写英文字母、数字和各种标点符号,并且区分大小写字母。

下面举几个例子予以说明:

1.如果长字符串是“ABCDE”,短字符串是“ADC”,那么短字符串中的所有字符都在长字符串中,即长字符串包含了短字符串。

2.如果长字符串是“ABCDE”,短字符串是“ADCF”,那么短字符串中不是所有字符都在长字符串中,即长字符串不包含了短字符串。

3.如果长字符串是“ABCDE”,短字符串是“AAB”,那么短字符串中的所有字符都在长字符串中,即长字符串包含了短字符串。

[[180306]]

二、算法设计

我们都知道,就像人体是由一个个的细胞组成一样,一个字符串是由一个个的字符组成。如果组成某个字符串的所有字符都在另一个字符串中,那么这个字符串就被另一个字符串包含。

因此,我们可以考虑先将两个字符串中的所有字符都找出来,再判断较短的字符串中的所有字符是否都出现在了较长的字符串中。如果是,那么两个字符串是包含与被包含的关系;如果不是,那么两个字符串则“形同陌路”。

程序的总体流程如图1所示。

图1 程序的总体流程

三、特殊流程考虑

在编写程序的过程中,我们要对输入的两个字符串的长度及格式多做考虑,如:

1.如果输入失误,导致短字符串的长度大于了长字符串,那么程序直接返回,不进行后续处理。

2.不允许在输入字符串的中间出现空格,如果出现了,只能把空格前面的内容作为输入的字符串。

3.输入字符串可以包含字母(区分大小写)、数字、标点符号等字符。

4.为了方便程序处理,设定较长的字符串最长为500个字节,较短的字符串最长为100个字节。

四、程序代码

  1. /********************************************************************** 
  2. * 版权所有 (C)2016, Zhou Zhaoxiong。 
  3. * 文件名称: StringContains.c 
  4. * 文件标识: 无 
  5. * 内容摘要: 测试一个字符串是否是另一个字符串的子串 
  6. * 其它说明: 例如, "ABC"是"ABCD"的子串 
  7. * 当前版本: V1.0 
  8. * 作    者: Zhou Zhaoxiong 
  9. * 完成日期: 20160216 
  10. **********************************************************************/ 
  11. #include <stdio.h> 
  12. #include <stdlib.h> 
  13.  
  14. // 重新定义数据类型 
  15. typedef signed   char       INT8; 
  16. typedef unsigned short int  UINT16; 
  17. typedef          int        INT32; 
  18. typedef unsigned int        UINT32; 
  19.  
  20. // 存放字符串中的字符和格式的结构体 
  21. typedef struct 
  22.     INT8   szStrCharArray[101][2];     // 字符串中不相同的字符的存放数组,***支持100个 
  23.     INT32  iStrCharCount;              // 字符串中不相同的字符的个数 
  24. } StrInfo_T; 
  25.  
  26. StrInfo_T gtLongerStrInfo  = {0}; 
  27. StrInfo_T gtShorterStrInfo = {0}; 
  28.  
  29.  
  30. // 函数声明 
  31. void GetStrChar(INT8 *pszInputStr, INT32 iProcessFlag); 
  32. INT32 JudgeIfContainsStr(); 
  33.  
  34.  
  35. /********************************************************************** 
  36. * 功能描述: 主函数 
  37. * 输入参数: 无 
  38. * 输出参数: 无 
  39. * 返 回 值: 0-执行成功   其它-执行失败 
  40. * 其它说明: 无 
  41. * 修改日期        版本号       修改人          修改内容 
  42. * ----------------------------------------------------------------- 
  43. * 20160216        V1.0     Zhou Zhaoxiong        创建 
  44. ***********************************************************************/ 
  45. INT32 main() 
  46.     INT8   szLongerStr[500]   = {0}; 
  47.     INT8   szShorterStr[100]  = {0}; 
  48.      
  49.     UINT32 iContainFlag = 1;     // 包含标志, 1-包含, 0-不包含 
  50.      
  51.     printf("Please input the longer string: \n"); 
  52.     scanf("%s", szLongerStr); 
  53.     printf("LongerStr=%s\n", szLongerStr); 
  54.  
  55.     printf("Please input the shorter string: \n"); 
  56.     scanf("%s", szShorterStr); 
  57.     printf("ShorterStr=%s\n", szShorterStr); 
  58.  
  59.     // 如果ShorterStr的长度大于LongerStr, 则直接返回 
  60.     if (strlen(szShorterStr) > strlen(szLongerStr)) 
  61.     { 
  62.         printf("%s is longer than %s, please check!\n", szShorterStr, szLongerStr); 
  63.         return -1; 
  64.     } 
  65.      
  66.     // 获取较长的字符串中的不同的字符 
  67.     GetStrChar(szLongerStr, 1); 
  68.  
  69.     // 获取较短的字符串中的不同的字符 
  70.     GetStrChar(szShorterStr, 2); 
  71.  
  72.     iContainFlag = JudgeIfContainsStr(); 
  73.     if (iContainFlag == 0) 
  74.     { 
  75.         printf("%s doesn't contain %s!\n", szLongerStr, szShorterStr); 
  76.     } 
  77.     else 
  78.     { 
  79.         printf("%s contains %s!\n", szLongerStr, szShorterStr); 
  80.     } 
  81.      
  82.     return 0;             
  83.  
  84.  
  85. /********************************************************************** 
  86. * 功能描述: 获取字符串中不相同的字符及其个数 
  87. * 输入参数: pszInputStr-输入字符串 
  88.              iProcessFlag-处理标志(1:处理长字符串, 2:处理短字符串) 
  89. * 输出参数: 无 
  90. * 返 回 值: 无 
  91. * 其它说明: 无 
  92. * 修改日期          版本号         修改人           修改内容 
  93. * --------------------------------------------------------------- 
  94. * 20160216          V1.0       Zhou Zhaoxiong        创建 
  95. ***********************************************************************/ 
  96. void GetStrChar(INT8 *pszInputStr, INT32 iProcessFlag) 
  97.     INT32  iCharCount      = 0;                // 字符个数 
  98.     INT8   szInputStr[501] = {0}; 
  99.     INT8   szCharBuf[2]    = {0};              // 存放单个字符的缓存 
  100.     INT32  iRepeatFlag     = 0
  101.     UINT32 iStrPosFlag     = 0
  102.     UINT32 iLoopFlag       = 0
  103.     UINT32 iInputStrLen    = 0
  104.  
  105.     if (pszInputStr == NULL) 
  106.     { 
  107.         return; 
  108.     } 
  109.  
  110.     iInputStrLen = strlen(pszInputStr); 
  111.     if (iInputStrLen >= 500)  // ***支持100个字母 
  112.     { 
  113.         return; 
  114.     } 
  115.  
  116.     memcpy(szInputStr, pszInputStr, iInputStrLen); 
  117.  
  118.     iCharCount = 0
  119.  
  120.     for (iStrPosFlag = 0; iStrPosFlag < iInputStrLen; iStrPosFlag ++) 
  121.     { 
  122.         iRepeatFlag = 0
  123.          
  124.         // 判断正要获取的字符是否已经存在了 
  125.         memset(szCharBuf, 0x00, sizeof(szCharBuf)); 
  126.         memcpy(szCharBuf, szInputStr+iStrPosFlag, 1); 
  127.  
  128.         // 若与之前已经加入的字符重复, 则忽略 
  129.         for (iLoopFlag = 0; iLoopFlag < iCharCount; iLoopFlag ++) 
  130.         { 
  131.             if (iProcessFlag == 1)    // 处理长字符串 
  132.             { 
  133.                 if (0 == strncmp(gtLongerStrInfo.szStrCharArray[iLoopFlag], szCharBuf, 1)) 
  134.                 { 
  135.                     iRepeatFlag = 1;  // 有重复的, 直接忽略 
  136.                     break; 
  137.                 } 
  138.             } 
  139.             else                     // 处理短字符串 
  140.             { 
  141.                 if (0 == strncmp(gtShorterStrInfo.szStrCharArray[iLoopFlag], szCharBuf, 1)) 
  142.                 { 
  143.                     iRepeatFlag = 1;  // 有重复的, 直接忽略 
  144.                     break; 
  145.                 } 
  146.             } 
  147.         } 
  148.  
  149.         if (1 == iRepeatFlag) 
  150.         { 
  151.             continue; 
  152.         } 
  153.  
  154.         if (iProcessFlag == 1)    // 处理长字符串 
  155.         { 
  156.             strncpy(gtLongerStrInfo.szStrCharArray[iCharCount], szCharBuf, 1); 
  157.         } 
  158.         else                      // 处理短字符串 
  159.         { 
  160.             strncpy(gtShorterStrInfo.szStrCharArray[iCharCount], szCharBuf, 1); 
  161.         } 
  162.  
  163.         iCharCountiCharCount = iCharCount + 1; 
  164.     } 
  165.  
  166.     if (iProcessFlag == 1)    // 处理长字符串 
  167.     { 
  168.         gtLongerStrInfo.iStrCharCount = iCharCount
  169.     } 
  170.     else                      // 处理短字符串 
  171.     { 
  172.         gtShorterStrInfo.iStrCharCount = iCharCount
  173.     } 
  174.  
  175.     return; 
  176.  
  177.  
  178. /********************************************************************** 
  179. * 功能描述: 判断长字符串是否包含了短字符串 
  180. * 输入参数: 无 
  181. * 输出参数: 无 
  182. * 返 回 值: 1-包含了 0-没有包含 
  183. * 其它说明: 无 
  184. * 修改日期          版本号         修改人           修改内容 
  185. * --------------------------------------------------------------- 
  186. * 20160216          V1.0       Zhou Zhaoxiong        创建 
  187. ***********************************************************************/ 
  188. INT32 JudgeIfContainsStr() 
  189.     UINT32 iLongerLoopFlag    = 0
  190.     UINT32 iShorterLoopFlag   = 0
  191.     UINT32 iCharIdenticalFlag = 0
  192.  
  193.     // 判断较短的字符串中的字符是否全部都在较长的字符串中的字符中 
  194.     for (iShorterLoopFlag = 0; iShorterLoopFlag < gtShorterStrInfo.iStrCharCount; iShorterLoopFlag ++) 
  195.     { 
  196.         iCharIdenticalFlag = 0
  197.         for (iLongerLoopFlag = 0; iLongerLoopFlag < gtLongerStrInfo.iStrCharCount; iLongerLoopFlag ++) 
  198.         { 
  199.             if (strcmp(gtShorterStrInfo.szStrCharArray[iShorterLoopFlag], gtLongerStrInfo.szStrCharArray[iLongerLoopFlag]) == 0) 
  200.             { 
  201.                 iCharIdenticalFlag = 1;    // 字符相同 
  202.                 break; 
  203.             } 
  204.         } 
  205.  
  206.         if (iCharIdenticalFlag == 0)     // 表示两个字符串中有不相同的字符 
  207.         { 
  208.             return 0; 
  209.         } 
  210.     } 
  211.  
  212.     return 1; 

五、程序测试

我们将编写好的程序“StringContains.c”上传到Linux机器,并使用“gcc -g -o StringContainsStringContains.c”命令对该程序进行编译,生成“StringContains”文件。下面对程序进行详细的测试。

1.输入较长字符串为“ABCDF”、较短字符串为“AF”时,程序运行情况如下:

  1. Please input the longer string: 
  2. ABCDF 
  3. LongerStr=ABCDF 
  4. Please input the shorter string: 
  5. AF 
  6. ShorterStr=AF 
  7. ABCDF contains AF! 

2.输入较长字符串为“AB”、较短字符串为“ABC”时,程序运行情况如下:

  1. Please input the longer string: 
  2. AB 
  3. LongerStr=AB 
  4. Please input the shorter string: 
  5. ABC 
  6. ShorterStr=ABC 
  7. ABC is longer than AB, please check! 

3.输入较长字符串为“awe”、较短字符串为“rf”时,程序运行情况如下:

  1. Please input the longer string: 
  2. awe 
  3. LongerStr=awe 
  4. Please input the shorter string: 
  5. rf 
  6. ShorterStr=rf 
  7. awe doesn't contain rf! 

4.输入较长字符串为“`11245”、较短字符串为“45”时,程序运行情况如下:

  1. Please input the longer string: 
  2. `11245 
  3. LongerStr=`11245 
  4. Please input the shorter string: 
  5. 45 
  6. ShorterStr=45 
  7. `11245 contains 45! 

5.输入较长字符串为“123”、较短字符串为“123 45”时,程序运行情况如下:

  1. Please input the longer string: 
  2. 123 
  3. LongerStr=123 
  4. Please input the shorter string: 
  5. 123 45 
  6. ShorterStr=123 
  7. 123 contains 123! 

可见,对于上面考虑到的几种特殊情况,程序均能做出正确的处理。

六、需求扩展

基于本文中的需求和程序,我们可考虑对需求进行以下扩展:

1.限制输入的字符串中只能包含字母,如果包含了其它字符,则直接退出而不进行处理。

 

2.如果较短的字符串中的所有字符虽然都在较长的字符串中,但某个字符在较短的字符串中出现的次数大于了在较长的字符串中出现的次数,那么就认为较长的字符串不包含较短的字符串。

【本文是51CTO专栏作者周兆熊的原创文章,作者微信公众号:周氏逻辑(logiczhou)】

戳这里,看该作者更多好文

责任编辑:赵宁宁 来源: 51CTO专栏
相关推荐

2016-12-30 13:16:51

字符串算法代码

2016-12-29 17:14:41

回文串算法代码

2016-12-30 13:37:50

字符串算法代码

2016-12-29 15:58:00

字符串子串算法

2016-12-29 17:07:59

字符算法代码

2023-02-26 22:33:32

字符串排列算法

2009-08-11 10:26:49

C#算法C#字符串反转

2021-09-03 09:41:36

字符串时间复杂度

2013-05-06 10:54:08

字符串字符串匹配KMP算法

2023-12-15 10:27:01

暴力匹配算法Python字符串

2010-11-26 09:51:54

MySQL字符串

2023-04-11 08:54:57

字符串匹配算法

2013-05-06 10:49:21

Boyer-Moore算法字符串匹配

2021-09-10 08:31:54

翻转字符串单词

2016-12-29 16:25:32

字符串算法代码

2024-07-03 11:23:14

2010-11-26 10:43:48

MySQL分割字符串

2024-01-09 16:43:49

Shell脚本开发

2010-09-09 11:48:00

SQL函数字符串

2010-08-04 11:23:15

Flex字符串
点赞
收藏

51CTO技术栈公众号