华为机试题---分离子串

/*
题目描述:   
通过键盘输入任意一个字符串序列,字符串可能包含多个子串,子串以空格分隔。请编写一
个程序,自动分离出各个子串,并使用’,’将其分隔,并且在最后也补充一个’,’并将子
串存储。 
 
如果输入“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 <stdio.h>  
#include<stdlib.h>
#include<windows.h>


void DivideString(const char *str,long len,char *outstr)
{
	for(int i=0;i<len;i++)
	{
		if(str[i]!=' ')
		{
			*outstr++ = str[i];
		}
		else if ((str[i]==' ')&&str[i+1]!=' ')
		{
			*outstr++ = ',';
		}
	}
	*outstr++ = ',';
	*outstr++='\0';
}


void main()  
{  
    char *str = "abc def  shkfdafd     f";  
    int len = strlen(str);  
    char * outstr = (char*)malloc(len*sizeof(char));   
    DivideString(str,len,outstr);  
    printf("%s",outstr);  
    free(outstr);  
    outstr = NULL;  
	system("pause");
}


解析:本题目比较简单,就是识别出空格,然后把多余的空格过滤掉,换上逗号,当然记得在字符串的结尾加上一个逗号以及‘\0’。

你可能感兴趣的:(华为机试题---分离子串)