我写了两种实现方法,其中第二种是参考Yomman园友的(http://www.cnblogs.com/yomman/p/4271949.html)。我的方法(方法一)是用一个数组存放输入的字符串,另一个数组存放字符串中每个字的首地址,然后······;方法二是利用OJ会自动在输入结尾添加文件结束符,我是没想到,而且在自己的编译器(Dev-C++)上实现不了,但确实是简洁了不少,还有点小毛病,有点浪费空间。题设要求及代码实现如下,其中方法一被注释
/* Name: Copyright: Author: Date: 03/04/15 07:59 Description: 给定一句英语,要求你编写程序,将句中所有单词的顺序颠倒输出。 输入格式:测试输入包含一个测试用例,在一行内给出总长度不超过80的字符串。字符串由若干单词和若干空格组成,其中单词是由英文字母(大小写有区分)组成的字符串,单词之间用1个空格分开,输入保证句子末尾没有多余的空格。 输出格式:每个测试用例的输出占一行,输出倒序后的句子。 输入样例: Hello World Here I Come 输出样例: Come I Here World Hello */ #include <stdio.h> //#include <string.h> //#include <stdbool.h> #define MAX 80 //refering to another‘s int main() { // freopen("in.txt", "r", stdin); // for test char s[MAX / 2][MAX + 1]; int cnt; cnt = 0; while(scanf("%s", s[cnt++]) != EOF); cnt -= 2; while(cnt) printf("%s ", s[cnt--]); printf("%s\n", s[cnt]); // fclose(stdin); // for test return 0; } /* void inverse(char * s, int l); int main() { // freopen("in.txt", "r", stdin); // for test char s[MAX + 1]; int l; gets(s); l = strlen(s); inverse(s, l); // fclose(stdin); // for test return 0; } void inverse(char * s, int l) { char index[l / 2 + 1]; int i, cnt, tmp; bool head; cnt = 0; head = true; for(i = 0; i < l; i++) { if(s[i] != ‘ ‘) { if(head) { index[cnt++] = i; head = false; } } else head = true; } do { tmp = index[--cnt]; while(s[tmp] != ‘ ‘ && s[tmp]) putchar(s[tmp++]); if(cnt) printf(" "); }while(cnt); printf("\n"); } */
时间: 2024-10-05 18:05:44