码迷,mamicode.com
首页 > 移动开发 > 详细

字符串移动,字符串为*号和26个字母的任意组合,把*都移动到最左侧,字母移动到右侧,顺序不变

时间:2014-07-16 19:15:02      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   io   div   

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

#define   MAX     256

void  move_stars(char* str) {
    int len = strlen(str) - 1;
    char* p = str + len;
    char* q = p;
    for (;len >= 0; --len, --q) {
        if (isalpha(*q)) {
            *p-- = *q;
        }
    }
    ++p;
    while (str != p) {
        *str++ = *;
    }
}

int  main(void) {
    char  str[MAX];
    fgets(str, MAX, stdin);
    str[strlen(str)-1] = \0;
    move_stars(str);
    fprintf(stderr, "%s\n", str);
    system("pause");
    return  0;
}

 

字符串移动,字符串为*号和26个字母的任意组合,把*都移动到最左侧,字母移动到右侧,顺序不变,布布扣,bubuko.com

字符串移动,字符串为*号和26个字母的任意组合,把*都移动到最左侧,字母移动到右侧,顺序不变

标签:style   blog   color   for   io   div   

原文地址:http://www.cnblogs.com/coder-zhang/p/3844732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!