代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/369952/9627875
cpp stringmain.cpp
#include"stringhead.h"
void main()
{
SString T;
Next N;
int flag;
while((flag=Meum())
www.eeworm.com/read/369952/9627889
h stringhead.h
#include
#include
#include
#include
#define LINE 20
typedef struct{
char ch[80*LINE];
int length;
}SString;
typedef struct{
int next[80];
www.eeworm.com/read/369421/9648980
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/369421/9648987
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/369421/9648988
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/369421/9648992
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/369421/9648996
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/268160/11150710
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/411734/11230536
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/411734/11230561
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;