无回溯匹配模式
摘要:
#include "stdio.h"#include "stdlib.h"struct SeqString { int MAXNUM; int n; char *c;};typedef struct SeqString * PSeqString;//创建空顺序串PSeqString createNullStr_Seq(int m){ PSeqString pstr=(PSeqString)malloc(sizeof(struct SeqString)); if(pstr!=NULL) { pstr->c=(char *)malloc(sizeo.. 阅读全文
posted @ 2012-05-08 23:46 yucong 阅读(559) 评论(0) 推荐(2)
浙公网安备 33010602011771号