鱼C论坛

 找回密码
 立即注册
查看: 1257|回复: 2

[已解决]单词字母逆序标点符号位置保持不变

[复制链接]
发表于 2020-12-30 23:08:02 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
怎么在每个单词字母逆序中让标点符号的位置保持不变?
最佳答案
2020-12-31 09:18:06
本帖最后由 一世轻尘 于 2020-12-31 09:25 编辑

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
//step1:全盘翻转
void AllReverse(char *str)
{
    int len=strlen(str);
    int i=0,j=len-1;
    while (i<j)//实现逆序的判别条件
    {//全盘翻转:前后下标位置处遍历交换!!!
            if(str[i]!=32&&str[i]<=65)
                    i++;
            if(str[j]!=32&&str[j]<=65)
                        j--;        
        char tmp=str[i];
        str[i]=str[j];
        str[j]=tmp;
 
        i++;
        j--;
    }
}

 
int main(){
    //char *p="hello world";//字符串常量
    char p[]="hello world.";
    AllReverse(p);
    printf("%s",p);
    system("pause");
    return 0;
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-31 09:18:06 | 显示全部楼层    本楼为最佳答案   
本帖最后由 一世轻尘 于 2020-12-31 09:25 编辑

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
//step1:全盘翻转
void AllReverse(char *str)
{
    int len=strlen(str);
    int i=0,j=len-1;
    while (i<j)//实现逆序的判别条件
    {//全盘翻转:前后下标位置处遍历交换!!!
            if(str[i]!=32&&str[i]<=65)
                    i++;
            if(str[j]!=32&&str[j]<=65)
                        j--;        
        char tmp=str[i];
        str[i]=str[j];
        str[j]=tmp;
 
        i++;
        j--;
    }
}

 
int main(){
    //char *p="hello world";//字符串常量
    char p[]="hello world.";
    AllReverse(p);
    printf("%s",p);
    system("pause");
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-31 13:09:52 | 显示全部楼层

这是我自己写的
// 怎么在每个单词字母逆序中让标点符号的位置保持不变?
#include <stdio.h>
#include <ctype.h>

void restr(char *start, char *end)
{
        char c, *p, *q;
        p = start;
        q = end;

        unsigned int half;
        half = (q - p) / 2;

        while (p <= start + half)
        {
                c = *p;
                *p = *q;
                *q = c;

                p++;
                q--;
        }
}

int main(void)
{

        char a[20], *p, *start, *end;
        int b = 0;

        gets(a);
        p = start = end = a;

        while (*p)
        {
                if (isspace(*p) || ispunct(*p) || *(p + 1) == '\0')
                {
                        if (b && *(p + 1) == '\0')
                                end++;
                        if (b)
                                restr(start, end);
                        b = 0;
                }
                else
                {
                        if (b == 0)
                                start = p;
                        end = p;
                        b = 1;
                }
                p++;
        }

        printf("%s\n", a);
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 06:13

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表