HDU 1062 Text Reverse

 

我的思路还是通过空格一个个子串找出来,然后交换位置。字符串最后\0的判断踩了个坑WA了一次。。。

#include <stdio.h>
#include <math.h>
#include <iostream>

using namespace std;

void ReverseTarget(char str[1001],int beg,int end)
{
	if(beg < 0 || beg > 1000 || end < 0 || end > 1000 || beg > end)
		return;

	while(beg < end)
	{
		char cTemp;
		cTemp = str[beg];
		str[beg] = str[end];
		str[end] = cTemp;
		beg++;
		end--;
	}

}

void TextReverse(char str[1001])
{
	int id = 0;
	while(' ' == str[id])
		id++;
	int beg,end;
	bool bIsNew = true;
	for(;;id++)
	{
		if(str[id] != ' ' && bIsNew)
		{
			beg = id;
			bIsNew = false;
		}
		else if((str[id] == ' '||str[id] == '\0') && !bIsNew)
		{
			end = id-1;
			bIsNew = true;
			ReverseTarget(str,beg,end);
		}
		if(str[id] == '\0')
			break;
	}


}

void main()
{
	int n;
	cin>>n;

	getchar();
	int cnt = 0;
	while(cnt < n)
	{
		char str[1001];
		gets(str);

		TextReverse(str);
		cout<<str<<endl;

		cnt++;
	}
}


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值