登录 注册
当前位置:主页 > 资源下载 > 50 > 用C语言实现KMP算法

用C语言实现KMP算法

  • 更新:2024-08-10 15:08:56
  • 大小:16KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C - 后端
  • 格式:JPG

资源介绍

#include #include #include typedef struct { int length; char *p; }sstring; int *get_next (sstring s1) { int m = s1.length; char *p=s1.p; int j = 0; int *x=(int *)malloc(m*sizeof(int)); x[1] = 0; int i = 1; printf("%4d",x[i]); while(i