代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/266767/11213220
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next 算法 4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/266126/11239357
h c4-1.h
// c4-1.h 串的定长顺序存储表示
#define MAXSTRLEN 40 // 用户可在255以内定义最大串长(1个字节)
typedef char SString[MAXSTRLEN+1]; // 0号单元存放串的长度
www.eeworm.com/read/266126/11239361
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next 算法 4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/334557/12590094
h qsteproper.h
#ifndef _qsteproper_h_
#define _qsteproper_h_
#include "properfile.h"
#include "filepath.h"
#include "Scintilla.h"
#include "stringlist.h"
#include "constants.h"
class QSteEditor;
#define POSTIFX ".pr
www.eeworm.com/read/235539/14064480
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7、4.8的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next。算法4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/106800/15621201
h c4-1.h
// c4-1.h 串的定长顺序存储表示
#define MAXSTRLEN 40 // 用户可在255以内定义最大串长(1个字节)
typedef char SString[MAXSTRLEN+1]; // 0号单元存放串的长度
www.eeworm.com/read/106800/15621204
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next 算法 4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/106800/15621404
c algo4-1.c
/* algo4-1.c 实现算法4.6、4.7的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_next(SString T,int next[])
{ /* 求模式串T的next函数值并存入数组next 算法 4.7 */
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/106800/15621405
h c4-1.h
/* c4-1.h 串的定长顺序存储表示 */
#define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */
typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */
www.eeworm.com/read/351570/10639416
cpp algo0408.cpp
void get_nextval(SString T, int *next) { // 算法4.8
// 求模式串T的next函数修正值并存入数组nextval。
int i = 1;
int j = 0;
next[1] = 0;
while (i