62(p84)求已知串中最长空格序列的长度

求已知串中最长空格序列的长度,要求尽量少检查串的字符。提示:空格序列长度增大,程序将变得更快。

#include"stdio.h"
#define N 1000
void main()
{
int i = 0;
char a[N];
char tempchar;
int spaceCount = 0;
int spaceCountOld = 0;
int tempint = 0;
int cycleCount = 0;
memset(a,0, N * sizeof(char));
for (i = 0; i < N; ++i)
{
if ((tempchar = getchar()) == EOF) break;
a[i] = tempchar;
}
printf("\ndatasize = %d\n",i);
i = 0;
while (i < N && a[i] != 0)
{
++ cycleCount;
if(a[i] != ' ')
{
tempint = spaceCount == 0 ? 1 : spaceCount;
if (a[i + tempint] != ' ') i += tempint;
else ++ i;
if (spaceCount > spaceCountOld)
{
spaceCountOld = spaceCount;
}
spaceCount = 0;
}
else {++ spaceCount; ++ i;}
}
if (spaceCount > spaceCountOld)
{
spaceCountOld = spaceCount;
}
printf("\nspaceCountOld = %d\n", spaceCountOld);
printf("\cycleCount = %d\n", cycleCount);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值