代码搜索:SString

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

代码结果 985
www.eeworm.com/read/208856/15234173

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/208856/15234190

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/171026/5400043

cpp xcommon.cpp

//----------------------------------------------------------- /* 工程: 费尔个人防火墙 网址: http://www.xfilt.com 电子邮件: xstudio@xfilt.com 版权所有 (c) 2002 朱艳辉(费尔安全实验室) 版权声明: ------------------------
www.eeworm.com/read/171026/5400813

cpp xcommon.cpp

//----------------------------------------------------------- /* 工程: 费尔个人防火墙 网址: http://www.xfilt.com 电子邮件: xstudio@xfilt.com 版权所有 (c) 2002 朱艳辉(费尔安全实验室) 版权声明: ------------------------
www.eeworm.com/read/169753/5411514

java afont.java

import java.awt.*; import java.applet.*; public class aFont extends Applet { Choice lFont = new Choice(); Choice lSize = new Choice(); Choice lStyle = new Choice();
www.eeworm.com/read/163169/5511586

java afont.java

import java.awt.*; import java.applet.*; public class aFont extends Applet { Choice lFont = new Choice(); Choice lSize = new Choice(); Choice lStyle = new Choice();
www.eeworm.com/read/153251/5651721

java identifier.java

/** * Redistribution and use of this software and associated documentation * ("Software"), with or without modification, are permitted provided * that the following conditions are met: * * 1
www.eeworm.com/read/475726/6776351

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/475726/6776368

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/293882/8266115

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是数组,