split, midex, replace 基于C函数库字符串函数的基本实现


size_t split(const char *src, const char *delimiter, strarray &stra)

{
stra.clear();
char *temp = (char*)src;
int len_src = strlen(temp);
unsigned long pro;
VirtualProtect(temp, len_src + 1, 0x40, &pro);
char *pos_last = temp;
char *pos = strstr(temp, delimiter);
char chr = '\0';
int ret = 0;
int len_delimiter = strlen(delimiter);
while(pos)
{
chr = *pos;
*pos = '\0';
stra.push_back((const char*)pos_last);
*pos = chr;
pos_last = pos + len_delimiter;
pos = strstr(pos_last, delimiter);
++ret;
}
stra.push_back(pos_last);
++ret;
VirtualProtect(temp, len_src + 1, pro, NULL);
return ret;
}


size_t _split(const char *src, const char delimiter, strarray &stra)
{
stra.clear();
char *temp = (char*)src;
int len_src = strlen(temp);
unsigned long pro;
VirtualProtect(temp, len_src + 1, 0x40, &pro);
char *pos_last = temp;
char *pos = strchr(temp, delimiter);
char chr = '\0';
int ret = 0;
while(pos)
{
chr = *pos;
*pos = '\0';
stra.push_back((const char*)pos_last);
*pos = chr;
pos_last = pos + 1;
pos = strchr(pos_last, delimiter);
++ret;
}
stra.push_back(pos_last);
++ret;
VirtualProtect(temp, len_src + 1, pro, NULL);
return ret;
}


//查找s1, s2,返回两者之间的内容, incsym为true时返回内容包括s1,s2

size_t midex(const char *src, const char *s1, const char *s2, strarray &stra, bool incsym)
{
stra.clear();
char *temp = (char*)src;
int len_src = strlen(temp);
unsigned long pro;
VirtualProtect(temp, len_src + 1, 0x40, &pro);
char *pos_left = temp, *pos_right = temp;
int len_s1 = strlen(s1), len_s2 = strlen(s2);
char chr = '\0';
int ret = 0;
while(1)
{
pos_left = strstr(pos_right, s1);
if(!pos_left)
break;
pos_left += len_s1;
pos_right = strstr(pos_left, s2);
if(!pos_right)
break;
if(incsym)
{
chr = *(pos_right + len_s2);
*(pos_right + len_s2) = '\0';
stra.push_back(pos_left - len_s1);
*(pos_right + len_s2) = chr;
}
else
{
chr = *pos_right;
*pos_right = '\0';
stra.push_back(pos_left);
*pos_right = chr;
}
pos_right += len_s2;
++ret;
}
VirtualProtect(temp, len_src + 1, pro, NULL);
return ret;
}


size_t _midex(const char *src, const char c1, const char c2, strarray &stra, bool incsym)
{
stra.clear();
char *temp = (char*)src;
int len_src = strlen(temp);
unsigned long pro;
VirtualProtect(temp, len_src + 1, 0x40, &pro);
char *pos_left = temp, *pos_right = temp;
char chr = '\0';
int ret = 0;
while(1)
{
pos_left = strchr(pos_right, c1);
if(!pos_left)
break;
pos_right = strchr(pos_left++, c2);
if(!pos_right)
break;
if(incsym)
{
chr = *(pos_right + 1);
*(pos_right + 1) = '\0';
stra.push_back(pos_left - 1);
*(pos_right + 1) = chr;
}
else
{
chr = *pos_right;
*pos_right = '\0';
stra.push_back(pos_left);
*pos_right = chr;
}
++pos_right;
++ret;
}
VirtualProtect(temp, len_src + 1, pro, NULL);
return ret;
}


size_t _replace(const char chOld, const char chNew, std::string &str)
{
int len_src = str.length();
char *temp = new char [len_src + 1];
strcpy_s(temp, len_src + 1, str.c_str());
char *pos = temp;
size_t nResult = 0;
while(1)
{
pos = strchr(pos, chOld);
if(pos)
*pos = chNew;
else
break;
pos += 1;
++nResult;
}
str = temp;
delete temp;
return nResult;

}


//这里主要还是用了stl了,不用stl的话,在查找替换位置上,分配动态数组可能会麻烦点

//然后用了std::string += 的运算符重载,自己实现的话,从分配,释放内存上来看,是存在安全隐患的,然后拷贝字符串的代码可能也会麻烦点。

size_t replace(const char *lpOld, const char *lpNew, std::string &str)
{
int len_src = str.length();
char *temp = new char [len_src + 1];
strcpy_s(temp, len_src + 1, str.c_str());
size_t len_old = strlen(lpOld);
char *pos = temp;
std::vector<char*> vRepos;
while(1)
{
pos = strstr(pos, lpOld);
if(pos)
{
*pos = '\0';
vRepos.push_back(pos + len_old);
}
else
break;
pos += len_old;
}
size_t nSize = vRepos.size();
str.clear();
str = temp;
for(size_t nIndex = 0; nIndex < nSize; ++nIndex)
{
str += lpNew;
str += vRepos[nIndex];
}
delete temp;
return nSize;
}
内容概要:本文详细介绍了Scrum.org专业敏捷领导力认证(PAL I)的相关信息,包括考试概述、考试详情、考试大纲、样题和备考建议。PAL I考试包含36道选择题,考试时长为60分钟,通过分数为85%,考试费用为200美元。考试内容涵盖Scrum框架的理解与应用、Scrum团队、事件、工件、完成定义、扩展、人员与团队的发展、领导风格、教练与指导、产品管理、持续质量、优化流程以及敏捷组织的演变等多个方面。通过认证有助于职业发展,提供新的就业机会、更高的薪酬或内部认可。 适合人群:希望获得Scrum.org专业敏捷领导力认证的个人,特别是那些希望提升敏捷管理技能并在组织中推动敏捷转型的领导者和管理者。 使用场景及目标:①帮助考生深入了解Scrum框架及其核心概念;②掌握Scrum团队运作、事件、工件和扩展的实际应用;③理解并应用敏捷领导风格、教练与指导技巧;④学习如何在复杂环境中管理和交付产品;⑤掌握持续质量管理和优化流程的方法;⑥了解如何在传统组织中实施敏捷变革。 阅读建议:备考过程中应先熟悉PAL I考试大纲,制定合理的复习计划。建议参加Scrum.org提供的官方培训课程,多做样题和模拟考试,通过实践不断巩固所学知识。此外,利用ProcessExam.com提供的在线练习测试,评估自己的强项和弱项,有针对性地进行准备,直到能够在模拟考试中取得高分。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值