POJ 1107 选定字符循环右移

题目链接:http://poj.org/problem?id=1107

题目好难看懂啊,其实就是把字母和下划线分为三个组,每个组的字母分别循环右移k1,k2,k3个单位,我用的队列,比如第一组字母{i,c,b,f,h,e}-》{h,e,i,c,b,f}字符串从右往左循环,遇到符合条件字母就加入队列,则头-尾:e,h,f,b,c,i,循环右移两个单位的话,就取出队头再把它放入队列,进行两次后就变为了:f,b,c,i,e,h,在倒着循环依次放入就可以了。

倒着循环时,i习惯性的写成了i++。。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<cmath>
#include<queue>
using namespace std;

queue<char> pos;

int main(){
	freopen("input.txt","r",stdin);
	int k1,k2,k3;
	while(cin>>k1>>k2>>k3){
		if(k1==0 && k2==0 && k3==0) return 0;
		char str[100];
		cin>>str;
		int num=0;
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]>='a' && str[i]<='i'){
				pos.push(str[i]);
		    }
		}
		for(int i=0;i<k1;i++){
			char c=pos.front();
			pos.pop();
			pos.push(c);
		}
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]>='a' && str[i]<='i'){
				str[i]=pos.front();
				pos.pop();
		    }
		}
		
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]>='j' && str[i]<='r'){
				pos.push(str[i]);
		    }
		}
//		k2=k2%pos.size();
		for(int i=0;i<k2;i++){
			char c=pos.front();
			pos.pop();
			pos.push(c);
		}
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]>='j' && str[i]<='r'){
				str[i]=pos.front();
				pos.pop();
		    }
		}
		
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]<'a' ||str[i]>'r'){
				pos.push(str[i]);
		    }
		}
		for(int i=0;i<k3;i++){
			char c=pos.front();
			pos.pop();
			pos.push(c);
		}
		for(int i=strlen(str)-1;i>=0;i--){
			if(str[i]<'a' ||str[i]>'r'){
				str[i]=pos.front();
				pos.pop();
		    }
		}
		cout<<str<<endl;
		
	}
	return 0;
}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值