代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/303129/3815289
txt 4_4.txt
int StrEmpty(SString s)
/*若串s为空则返回1,否则返回0 */
{
if (s.len==0)
return(1);
else
return(0)
}
www.eeworm.com/read/195829/5107092
txt 4_10.txt
int StrIndex(SString s,int pos, SString t)
/*求从主串s的下标pos起,串t第一次出现的位置,成功返回位置序号,不成功返回-1*/
{
int i, j, start;
if (t.len==0)
return(0); /* 模式串为空串时,是任意串的匹配串 */
start=pos;
i=start;
j=
www.eeworm.com/read/195829/5107093
txt 4_14.txt
int StrIndex_KMP(SString s,int pos, SString t,int next[])
/*求从主串s的下标pos起,串t第一次出现的位置*/
{
int i, j;
if (t.len==0)
return(0); /* 空串是任意字符串的子串 */
i=pos;
j=0;
while (i
www.eeworm.com/read/303129/3815286
txt 4_10.txt
int StrIndex(SString s,int pos, SString t)
/*求从主串s的下标pos起,串t第一次出现的位置,成功返回位置序号,不成功返回-1*/
{
int i, j, start;
if (t.len==0)
return(0); /* 模式串为空串时,是任意串的匹配串 */
start=pos;
i=start;
j=
www.eeworm.com/read/303129/3815287
txt 4_14.txt
int StrIndex_KMP(SString s,int pos, SString t,int next[])
/*求从主串s的下标pos起,串t第一次出现的位置*/
{
int i, j;
if (t.len==0)
return(0); /* 空串是任意字符串的子串 */
i=pos;
j=0;
while (i
www.eeworm.com/read/101082/6248922
tokens
SEOS
SCOMMENT
SLABEL
SUNKNOWN
SHOLLERITH
SSTRING
SICON
SRCON
SDCON
SBITCON
SOCTCON
SHEXCON
STRUE
SFALSE
SNAME
SNAMEEQ
SFIELD
SSCALE
SINCLUDE
SLET
SASSIGN
SAUTOMATIC
SBACKSPACE
SBLOCK
SCALL
SCHARACTER
www.eeworm.com/read/318827/3561884
via stringsandconversion.via
// StringsAndConversion.lnl
application PE GUI;
include "Windows.inc", "Strings.inc", "Conversion.inc";
dword dwNumber; string buffer; string sString;
entry
// Strings.inc .. with vario
www.eeworm.com/read/305805/3768947
via stringsandconversion.via
// StringsAndConversion.lnl
application PE GUI;
include "Windows.inc", "Strings.inc", "Conversion.inc";
dword dwNumber; string buffer; string sString;
entry
// Strings.inc .. with vario
www.eeworm.com/read/195829/5107088
txt 4_5.txt
int StrCompare(SString s, SString t)
/*若串s和t相等则返回0;若s>t则返回正数;若s