代码搜索:SString

找到约 985 项符合「SString」的源代码

代码结果 985
www.eeworm.com/read/349837/10797717

cpp algo0401.cpp

#include "algo0403.cpp" int Index(SString S, SString T, int pos) { // 算法4.1 // T为非空串。若主串S中第pos个字符之后存在与T相等的子串, // 则返回第一个这样的子串在S中的位置,否则返回0 int n,m,i; SString sub; if (pos > 0) {
www.eeworm.com/read/468888/6981375

cpp utility.cpp

/**************************************************************************** * * Copyright (c) 2000, 2001 * Machine Group * Software Research Lab. * Institute of Computing Tech
www.eeworm.com/read/466955/7024883

c bo4-1.c

/* bo4-1.c 串采用定长顺序存储结构(由c4-1.h定义)的基本操作(14个) */ /* SString是数组,故不需引用类型。此基本操作包括算法4.2,4.3,4.5 */ Status StrAssign(SString T,char *chars) { /* 生成一个其值等于chars的串T */ int i; if(strlen(chars)>MAX
www.eeworm.com/read/456942/7336277

cpp bo5-51.cpp

// bo5-51.cpp 广义表的书写形式串为SString类型 #include"c4-1.h" // 定义SString类型 #include"bo4-1.cpp" // SString类型的基本操作 void sever(SString str,SString hstr) // 算法5.8 SString是数组,不需引用类型 { // 将非空串str分割成两部分:hsub
www.eeworm.com/read/456942/7336386

cpp bo4-1.cpp

// bo4-1.cpp 串采用定长顺序存储结构(由c4-1.h定义)的基本操作(14个) // SString是数组,故不需引用类型。此基本操作包括算法4.2,4.3,4.5 Status StrAssign(SString T,char *chars) { // 生成一个其值等于chars的串T int i; if(strlen(chars)>MAXSTRLEN)
www.eeworm.com/read/454932/7381585

cpp bo5-51.cpp

// bo5-51.cpp 广义表的书写形式串为SString类型 #include"c4-1.h" // 定义SString类型 #include"bo4-1.cpp" // SString类型的基本操作 void sever(SString str,SString hstr) // 算法5.8 SString是数组,不需引用类型 { // 将非空串str分割成两部分:hsub
www.eeworm.com/read/454932/7381638

cpp bo4-1.cpp

// bo4-1.cpp 串采用定长顺序存储结构(由c4-1.h定义)的基本操作(14个) // SString是数组,故不需引用类型。此基本操作包括算法4.2,4.3,4.5 Status StrAssign(SString T,char *chars) { // 生成一个其值等于chars的串T int i; if(strlen(chars)>MAXSTRLEN)
www.eeworm.com/read/454633/7386449

cpp algo0405.cpp

int Index(SString S, SString T, int pos) { // 算法4.5 // 返回子串T在主串S中第pos个字符之后的位置。 // 若不存在,则函数值为0。 // 其中,T非空,1≤pos≤StrLength(S)。 int i = pos; int j = 1; while (i
www.eeworm.com/read/454633/7386450

cpp algo0401.cpp

#include "algo0403.cpp" int Index(SString S, SString T, int pos) { // 算法4.1 // T为非空串。若主串S中第pos个字符之后存在与T相等的子串, // 则返回第一个这样的子串在S中的位置,否则返回0 int n,m,i; SString sub; if (pos > 0) {
www.eeworm.com/read/453142/7425278

c fs_apivalidation.c

/* ********************************************************************** * Micrium, Inc. * 949 Crestview Circle * Weston, FL 333