• 字符串以空格翻转


    将以空格为分隔符分隔的字符串逆序打印,但单词不逆序。例如“Hello world Welcome to China”的打印结果为“China to Welcome world Hello”。
    #include <stdio.h>
    #include <string.h>
    /* Print string str partially, from start to end-1. */
    void print_word(const char * str, int start, int end)
    {
    int i;
        for (i = start; i < end; ++i)
    {
    printf("%c", str[i]);
    }
    }
    /* Reversely print string str. */
    void reversely_print_string(const char * str)
    {
    int len, i, end;
        len = strlen(str);
    end = len;
    for (i = len - 1; i >= 0; --i)
    {
    if (' ' == str[i])
    {
    /* Print the word after this space. */
    print_word(str, i + 1, end);
                /* Print the space. */
    printf("%c", str[i]);
                /* Set the right boundary of the previous word. */
    end = i;
    }
    }
    /* Print the first word. */
    print_word(str, 0, end);
    }
    int main(int argc, char * argv[])
    {
    if (argc > 1)
    {
    reversely_print_string(argv[1]);
    }
    printf("
    ");
        return 0;
    }

    这个方法是直接翻转法、遇到空格就把后面的串输出,只用一个end就行了

  • 相关阅读:
    js this
    python词云的制作方法
    flask表单标签
    scrapy使用PhantomJS爬取数据
    flask连接sqlalchemy数据库,实现简单的登录跳转功能
    useful tools and website
    sqlalchemy精华版
    flask连接数据库mysql+SQLAlchemy
    flask框架get post方式
    flask基础知识
  • 原文地址:https://www.cnblogs.com/fickleness/p/3387769.html
Copyright © 2020-2023  润新知