zoukankan      html  css  js  c++  java
  • 反转字符串

    void reverse(char *group,int i,int j)

    {

        char c;

        while(i<j){

            c=group[i];

            group[i]=group[j];

            group[j]=c;

            ++i;--j;

        }

    }

    void reverse_list_word(char * group,int length)

    {

        reverse(group,0,length-1);

        int first=-1,second=-1,i=0;

        while(i<length){

            

            while(i<length && group[i]==' ') ++i;

            first=i;

            while(i<length && group[i]!=' ') ++i;

            second=i-1;

            

            if(first!=-1 && first!=length)

            {

                reverse(group,first,second);

                first =-1;second=-1;

            }

             

        }

        

    }

  • 相关阅读:
    docker学习
    获取程序所有加载的dll名称
    Microsoft.Exchange 发邮件
    EF实体对象解耦
    python并发与futures模块
    python协程
    python上下文管理器
    python迭代器与生成器
    python抽象基类
    python运算符重载
  • 原文地址:https://www.cnblogs.com/sofard/p/10450901.html
Copyright © 2011-2022 走看看