代码搜索:SString

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

代码结果 985
www.eeworm.com/read/349837/10797742

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/273782/10901379

htm class19.htm

数据结构--数据空间http://zmofun.topcool.net 第十九课
www.eeworm.com/read/133989/7082476

pas namebookscalequeryunit.pas

unit NameBookScaleQueryUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ComCtrls, ExtCtrls, DB, ADODB; type
www.eeworm.com/read/133989/7082489

~pas namebookscalequeryunit.~pas

unit NameBookScaleQueryUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ComCtrls, ExtCtrls, DB, ADODB; type
www.eeworm.com/read/463562/7178336

txt 新建 文本文档.txt

#include"stdio.h" #include"stdlib.h" typedef struct { char ch[40]; int len; }SString; int StrLength(SString s) { return(s.len); } int SubString(SString *sub,SString s,int pos,int len
www.eeworm.com/read/463562/7178351

cpp abc.cpp

#include"stdio.h" #include"stdlib.h" #include"string.h" #include"malloc.h" typedef union { char atom; struct { struct GLNode *hp,*tp; }htp; }atomhtp; typedef struct GLNod
www.eeworm.com/read/461110/7233531

cpp func5-1.cpp

// func5-1.cpp 广义表的书写形式串为SString类型,包括算法5.8。bo5-5.cpp和bo5-6.cpp调用 #include"c4-1.h" // 定义SString类型 #include"bo4-1.cpp" // SString类型的基本操作 void sever(SString str,SString hstr) // 算法5.8改。SString是数组,
www.eeworm.com/read/454633/7386447

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/454633/7386464

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

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