代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/351570/10639434
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/351570/10639478
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/159245/10675912
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/159245/10675919
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/159245/10675921
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/159245/10675928
cpp substring.cpp
//SubString.cpp
//To find out Substring
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1];
int SubString(SString
www.eeworm.com/read/159245/10675935
cpp concat.cpp
//Concat.cpp
//To Concat the SString S1 and S2
#include
#include
#include
#define MAXSTRLEN 255
typedef unsigned char SString[MAXSTRLEN+1];
int Concat(SS
www.eeworm.com/read/421237/10747886
pas b.pas
unit b;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, CnUDP, StdCtrls;
type
TForm1 = class(TForm)
udp1: TCnUDP;
mmo1: T
www.eeworm.com/read/421237/10747957
~pas b.~pas
unit b;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, CnUDP, StdCtrls;
type
TForm1 = class(TForm)
udp1: TCnUDP;
mmo1: T
www.eeworm.com/read/349837/10797709
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