要求实现函数: void DivideString(const char *pInputStr, long lInputLen, char *pOutputStr);

题目描述: 通过键盘输入任意一个字符串序列,字符串可能包含多个子串,子串以空格分隔。请编写一 个程序,自动分离出各个子串,并使用','将其分隔,并且在最后也补充一个',' ,并将子 串存储。  
如果输入“abc def gh i    d”,结果将是 abc,def,gh,i,d,  
要求实现函数:  void DivideString(const char *pInputStr, long lInputLen, char *pOutputStr);  
[输入] 
pInputStr:  输入字符串  
lInputLen:  输入字符串长度           
[输出] pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;  
[注意]只需要完成该函数功能算法,中间不需要有任何 IO 的输入输出  
示例  输入:“abc def gh i    d”  

输出:“abc,def,gh,i,d,”   


完整验证代码:

#include <iostream>
using namespace std;

class Solution{
public:
void DivideString(const char *pInputStr, long lInputLen, char *pOutputStr){
int i=0, j=0;
while(pInputStr[i]==' ')//处理开头为空格
i++;
if(i==lInputLen-1)//全为空格
cout<<"字符串中全为空格";
for( ; i<lInputLen; i++){
if(pInputStr[i]!=' ')//不是空格的字符
pOutputStr[j++]=pInputStr[i];
else if( (pInputStr[i]==' ')&&(pInputStr[i+1]!=' ') )//空格处理
pOutputStr[j++]=',' ;
if( (pInputStr[i]!=' ')&&(pInputStr[i+1]=='\0') )//最后一个字符是字母,加逗号
pOutputStr[j++]=',' ;

}
};

int main(){
const int LENGTH=17;
char str1[LENGTH]="abc def gh i   d"; 
//char str1[LENGTH]="   abc ";
//char str1[LENGTH]="   "; 
char str2[LENGTH];
Solution solution;
solution.DivideString(str1,LENGTH,str2);
for(int i=0; i<strlen(str2); i++)
cout<<str2[i];
cout<<endl;
return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值