代码搜索:SString

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

代码结果 985
www.eeworm.com/read/448997/7520434

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/448997/7520435

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/444277/7614757

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/442220/7656939

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/438922/7719325

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/434090/7890279

cpp utility.cpp

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

bas module1.bas

Attribute VB_Name = "Module1" Option Explicit Public hh, mm, ss As Integer Public Function hmsValueToString(ByVal h As Integer, ByVal m As Integer, ByVal s As Integer) As String Dim hstring,
www.eeworm.com/read/295928/8134314

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/295928/8134485

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/146173/12666102

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