Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1698221
  • 博文数量: 210
  • 博客积分: 10013
  • 博客等级: 上将
  • 技术积分: 2322
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-25 15:56
文章分类

全部博文(210)

文章存档

2011年(34)

2010年(121)

2009年(37)

2008年(18)

我的朋友

分类: C/C++

2010-06-23 21:30:02

写一函数,完成字串循环右移
如"abcdefghi",循环右移2位后成为"hiabcdefg"

void tranStr( char *pStr, int n );

#include "stdafx.h"
#include<iostream>
#include<string>
#include<cstring>

using namespace std;
void tranStr(char *pStr,int num){
    char *back=new char[num+1];
    strcpy(back,pStr+strlen(pStr)-num);
    char *front = new char[strlen(pStr)-num];
    strncpy(front,pStr,strlen(pStr)-num);
    strcat(back,front);
    pStr=back;
}
int _tmain(int argc, _TCHAR* argv[])
{
    char *s1="abcdefghijk";
    tranStr(s1,2);
    cout<<s1<<endl;
}


阅读(784) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~