| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 374 人关注过本帖
标题:[求助]为什么??串模式匹配程序报错
只看楼主 加入收藏
foxtt123
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2007-3-26
收藏
 问题点数:0 回复次数:0 
[求助]为什么??串模式匹配程序报错

#include "stdio.h"
#include "iostream.h"
#include "stdlib.h"
#include "string.h"
#define ERROR 0
#define OK 1
#define TURE 1
#define FAULSE 0
#define OVERFLOW -2
typedef struct string
{ char *st;
int length;
}String;

status stringassign(String &ST,char *cstring)
{ int i,j;
printf("Cstring= %s\n", cstring);
i=strlen(cstring);
printf("i=%d\n",i);
if(!i)
{ ST.st=NULL;ST.length=0; }
else
{
if(!(ST.st=(char *)malloc(i+1*sizeof(char))))
return OVERFLOW;
for(j=0;j<=i;j++)
ST.st[j]=cstring[j];
ST.length=i;
}
printf("Createstringsuccessfully!");
return OK;
}

int index(String ST,String Search,int cur)
{ int i,j;
i=cur;
j=0;
while(i<=ST.length&&j<Search.length)
{ if(ST.st[i]==Search.st[j])
{ ++i; ++j; }
else
{ ++i; j=0; }
}
if(j==Search.length)
{ printf("已经找到此串,串在第%d位\n",i-j);
return i-j; }
else
{ printf("没有此串! \n");
return -2; }
}

int main(int argc, char* argv[])
{
String Sstring;
int i=0,pos;
char Schar[100];
printf("请输入主串:\n");
getch Schar;
stringassign(Sstring &S1,Schar);
printf("请输入模式串: \n");
getch Schar;
stringassign(Sstring &S2.Schar)
pos=0;
int index(S1,S2,pos):

}
错误弹出来说的是
Compiling...
22.cpp
C:\Program Files\Microsoft Visual Studio\MyProjects\2222\22.cpp(15) : error C2146: syntax error : missing ';' before identifier 'stringassign'
C:\Program Files\Microsoft Visual Studio\MyProjects\2222\22.cpp(15) : error C2501: 'status' : missing storage-class or type specifiers
C:\Program Files\Microsoft Visual Studio\MyProjects\2222\22.cpp(15) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.

22.obj - 1 error(s), 0 warning(s)

搜索更多相关主题的帖子: 模式 
2007-07-08 23:07
快速回复:[求助]为什么??串模式匹配程序报错
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022402 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved