代码搜索:SString

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

代码结果 985
www.eeworm.com/read/425971/10300382

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/424783/10413194

c fs_apivalidation.c

/* ********************************************************************** * Micrium, Inc. * 949 Crestview Circle * Weston, FL 333
www.eeworm.com/read/423304/10571559

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/423304/10571735

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/423304/10572698

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/351570/10639439

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/351570/10639443

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/159245/10675925

cpp replace.cpp

//Replace.cpp #include #include #include #define MAXSTRLEN 255 typedef unsigned char SString[MAXSTRLEN+1]; //from 0 to 256 becoz '\0' void Copy(SSt
www.eeworm.com/read/421599/10726845

cpp utility.cpp

////////////////////////////////////////////////////////////////////// //ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System), // 功能有:中文分词;词性标
www.eeworm.com/read/349837/10797715

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