代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/124165/14592449
inc checkout_validate.inc
// Removes all characters which are not digits
// from a string
function numericOnly(sString)
{
var sNumericOnly = "";
var sValidChars = "1234567890";
for (v
www.eeworm.com/read/123605/14621462
java afont.java
//******************************************************************************
// -----------------------------------------------------------
// aFont.java
// ------------------------------------
www.eeworm.com/read/223339/14644561
cpp algo0403.cpp
Status SubString(SString &Sub, SString S, int pos, int len) {
// 算法4.3
// 用Sub返回串S的第pos个字符起长度为len的子串。
// 其中,1≤pos≤StrLength(S)且0≤len≤StrLength(S)-pos+1。
int i;
if (pos < 1 || pos
www.eeworm.com/read/223339/14644590
cpp algo0507.cpp
Status CreateGList(GList &L, SString S) { // 算法5.7
// 采用头尾链表存储结构,由广义表的书写形式串S创建广义表L。
// 设emp="()"。
char s[3]="()";
SString emp;
crt_SString(emp,s);
SString sub,hsub;
GList p,q;
www.eeworm.com/read/222762/14675156
cpp index_kmp.cpp
//Index_KMP.cpp
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1]; //from 0 to 256 becoz of '\0'
www.eeworm.com/read/222762/14675164
cpp compare.cpp
//Compare.cpp
//Compare two SString
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1];
int Compare(SString S1,SStr
www.eeworm.com/read/222762/14675166
cpp index_bf.cpp
//Index_BF.cpp
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1]; //from 0 to 256 becoz of '\0'
www.eeworm.com/read/222762/14675173
cpp substring.cpp
//SubString.cpp
//To find out Substring
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1];
int SubString(SString