字符串顺序颠倒

时间:2025-03-27 09:49:30
#include<>

#define MAXLINE 1000

int getline_1(char line[], int maxline);
void reverse_1(char s[]);

main()
{
    char line[MAXLINE];

    while(getline_1(line,MAXLINE) > 0){
             reverse_1(line);
             printf("%s",line);
    }
    return 0;
}

int getline_1(char s[], int lim)   // 获得文本中的一行 存入数组s中 返回文本长度
{
    int i, c;
    for(i = 0; i < lim-1 && (c = getchar()) != EOF && c != '\n'; i++)
        s[i] = c;
    if(c == '\n'){
        s[i] = c;
        ++i;
    }
    s[i] = '\0';     //文本的末尾行没有\n  只有\0
    return i;
}

void reverse_1(char s[])  //一个数组的首尾互换  
{
    int i, j;
    char temp;
    
    i = 0;
    while(s[i] != '\0')
        ++i;
    --i;            //获得数组的字符长度  去掉\0
    if(s[i] == '\n')   //两个分开写是考虑到最后一行只有\0没有\n
        --i;

    j = 0;
    while(j < i){
        temp = s[j];
        s[j] = s[i];
        s[i] = temp;
        --i;
        ++j;
    }
}