:2.542KB : :1 :2023-05-28 13:18:48
对应下面的伪代码:
p = addressOf(bytes);
q = p + bytes.length - 1;
len = bytes.length / 2;
while (len--)
{
swap(p++, q--);
}
其中 bytes 表示字节集变量,其内部格式类似于:
struct _Bytes {
int num;
int length;
char buff[length];
};
看到这里,聪明的你可能已经发现了,len 这个变量实际上是可以取消掉的:
p = addressOf(bytes);
q = p + bytes.length - 1;
while (p < q)
{
swap(p++, q--);
}
05-24使用C++实现易语言的到字节集功能
05-24超级列表框字节集置列表标题和表项数据
02-16文本和字节集相互转换
02-04多线程传参字节集例程
02-08快速字节集对象处理大文本替换
11-13简单字节集加解密