子串分离

来源:互联网 发布:程序员 bug 笑话 编辑:程序博客网 时间:2024/05/16 01:09
题目描述:   
通过键盘输入任意一个字符串序列,字符串可能包含多个子串,子串以空格分隔。请编写一
个程序,自动分离出各个子串,并使用’,’将其分隔,并且在最后也补充一个’,’并将子
串存储。  
如果输入“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>#include<string>using namespace std;void DivideString(const char *input,long l,char *output){  int sign=0;while(*input){if(*input!=' '){sign=0;*output++=*input++;}else{sign++;*input++;if(sign==1)  //防止中间两个空格出现两个“,”  *output++=',';}}*output++=',';*output='\0';}void main(){char *str="abc  def g";int l= strlen(str);char *output=(char*)malloc(l);DivideString(str,l,output);cout<<output<<endl;}
</pre><pre code_snippet_id="630279" snippet_file_name="blog_20150328_1_2249019" name="code" class="cpp">第二种
<pre name="code" class="cpp">void main(){char s[100];char result[100];cin.getline(s,100);DivideString(s,strlen(s),result);cout<<result<<endl;}




0 0