代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/349837/10797684
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
www.eeworm.com/read/454633/7386437
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
www.eeworm.com/read/448997/7520422
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
www.eeworm.com/read/130382/5958555
h commonstrings.h
//////////////////////////////////////////////////////////////////////////////
// CommonStrings.h
//
// Contains declarations for CommonStrings.cpp.
///////////////////////////////////////////////
www.eeworm.com/read/223339/14644548
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
www.eeworm.com/read/219502/14878175
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
www.eeworm.com/read/208856/15234163
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
www.eeworm.com/read/475726/6776341
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
www.eeworm.com/read/411734/11230521
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
www.eeworm.com/read/289577/8542663
c algo4-2.c
/* algo4-2.c 实现算法4.6、4.8的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_nextval(SString T,int nextval[])
{ /* 求模式串T的next函数修正值并存入数组nextval。算法4.8 */
int i=1,j=0;
n