【每日一题】2012.5.27:删除多余的空格-非原创

#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>

int Remove(char str[])
{
	if (NULL == str)
	{
		return 0;
	}
	//删除空格计数
	int removeCnt = 0;
	//扫描头
	int i = 0;
	//当前字符为'\n',new_line为真,初始为真,可去除开头的空格
	bool newline = true;
	while (str[i])
	{
		str[i - removeCnt] = str[i];
		//当前为空格
		if (' ' == str[i])
		{
			//新行后的空格,应该删除
			if (newline)
			{
				++removeCnt;
			}
			//空格后的空格,应该删除
			else if (' ' == str[i + 1])
			{
				++removeCnt;
			}
			//换行前的空格,应该删除
			else if ('\n' == str[i + 1])
			{
				++removeCnt;
			}
			//结尾的空格,应该删除
			else if (0 == str[i + 1])
			{
				++removeCnt;
			}
		}
		else if ('\n' == str[i])
		{
			newline = true;
		}
		else
		{
			newline = false;
		}
		++i;
	}
	str[i - removeCnt] = 0;
	return removeCnt;
}

void main()
{
	char s[] = "abc   \n    b    d    "; 
	printf("%d\n",Remove(s));
	puts(s);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值