代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/222762/14675181
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/219502/14878193
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/219502/14878222
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/114100/15112824
txt 如何绘制显示进度百分比的进度条.txt
你 这 个 问 题 使 我 想 起 了 几 年 前 我 对 这 个 问 题 的 研 究 , 当 时 我 也 对 字 体 颜 色 改 变 感 到 困 惑 , 但 后 来 我 还 是 想 了 一 个 简 单 的 办 法 。 实 际 上 这 要 利 用 API的 一 个 函 数 ExtTextOut。 这 个 函 数 允 许 输 出 文 字 时 指 定 文 字 的 坐 标 和 一 个 矩 形 。 这 个