回答翻转字符串的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回答翻转字符串的问题相关的知识,希望对你有一定的参考价值。

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


void conventStr(char *str, const int strlen);


int main(void)
{
    char str[] = "how old are you?";
    conventStr(str, sizeof(str));
    printf("%s", str);
    system("pause");
    //system("pause");
}



void conventStr(char *str,const int strlength)
{
    char *newStr = (char *)malloc(strlength);
    int index = strlength;
    int newStrIndex = 0;
    memset(newStr,  , strlength);
    for (int i = strlength - 1; i >= 0; i--)
    { 
        if ((str[i] == ?) || (str[i] == \0))
        {
            index = i;
            newStr[i] = *(str + i);
        }
            
        if (str[i] ==  )
        {
            memcpy(newStr + newStrIndex, str + i +1, index - i -1);//复制单词
            newStrIndex += index - i; //新的存储数组索引,指示保存到哪里了
            newStr[newStrIndex - 1] =  ; //空格加到单词后面
            index = i;
        }
        if (i == 0)
        {
            memcpy(newStr + newStrIndex, str, index - i);//复制单词

        }
    }
    memcpy(str, newStr, strlength);
    free(newStr);
}

?

 

以上是关于回答翻转字符串的问题的主要内容,如果未能解决你的问题,请参考以下文章

华为OD机试真题Python实现翻转单词顺序真题+解题思路+代码(2022&2023)

2022&2023华为OD机试 - 单词反转 2(Python)

翻转数组

华为OD机试 - 单词反转(Python)| 真题含思路

翻转数组

华为OD机试 - 单词反转(JavaScript) | 机试题算法思路 2023