你能否解释一下为什么阵列“反转”特别是我加粗文本?这是打印的内容(输入“hi there”):“THE LINE(hi there)IN REVERSE:”。
此外,for循环中的print语句在最后一次迭代中将其打印为“反向数组:?ereht ih-”。
谢谢!
int reverseit(int length, char line[]); // Function declaration
#define MAXLENGTH 1000
int main()
{
int length = 0;
char line[MAXLENGTH]; // array declaration
gettheline(length, line);
...
}
void gettheline(int length, char line[])
{
int i, c = 0;
while((c=getchar())!= (EOF))
{
if (c!='\n') // we'll put the newline character in place ourselves when print in reverse is complete
{
line[i] = c; // until you see \n, keep setting each char to line[i]
printf("line[%d]=%c\n", i, line[i]);
i++; // increment i
length = i;
}
else if(i>0) // else if c is == \n and i>0 , reverse it, and put \n at the end
{
// store reverse of the line and stick \n at the end
reverseit(length, line);
}
}
int reverseit(int length, char line[]) // pass in "length" from getline
{
int i, j = 0;
char a;
char reversed[length];
for (i=length;i>-1;i--) //count down from length to 0
{
reversed[i] = line[j++];
printf("line[%d] = reversed[%d] = %c\n", i, j, line[i]);
printf("reversed array: %s", reversed);
}
**printf("THE LINE (%s) IN REVERSE: %s", line, reversed);**
...
}
答案 0 :(得分:1)
您可能会过度思考这一点,并且您可能希望从main
而不是getttheline
内拨打字符串撤销,以便在line
中恢复原来的main
而不是getttheline
中的瞬态位输入。它取决于你。
您的getttheline
函数确实只需要从'\n'
读取一行(由EOF
的{{1}}终止)。您已经传递了stdin
,为什么不传递 <{strong> length
的 地址(例如length
),并制作参数{{1在调用函数(&length
这里)中使字符串的最终长度可用。例如,您需要阅读int *
的一行输入:
main
以上使用存储在stdin
指向的地址的值作为您的计数器,以验证您在void gettheline(int *length, char *line)
{
int c = 0;
*length = 0;
while (*length + 1 < MAXLENGTH && (c=getchar()) != '\n' && c != EOF)
line[(*length)++] = c;
line[*length] = 0; /* nul-terminate */
}
中存储的length
个字符数不超过MAXLENGTH - 1
(为 nul-terminatedating 字符)。您只需使用line
读取每个字符,直到遇到gethar()
或'\n'
,此时您将结束读取循环,并在{{n>肯定 nul-terminate 1}}字符(因为您将EOF
初始化为所有length
,它已经完成,但最好是肯定地终止字符串。
至于你的逆转,你只需要一个开始和结束指向line
的指针(你拥有zeros
然后你可以通过交换从每一端开始的字符并向中间工作 - 每次迭代交换2个字符来非常有效地反转字符串,例如
line
将所有部分组合在一个短length
中,同时输出/** strreverse - reverse string given by begin and end pointers.
* Takes valid string and swaps src & dest each iteration.
* The original string is not preserved.
* If str is not valid, no action taken.
*/
void strreverse (char *begin, char *end)
{
char tmp;
if (!begin || !end) { /* validate both begin and end pointers */
printf ("error: invalid begin or end pointer\n");
return;
}
while (end > begin)
{
tmp = *end;
*end-- = *begin;
*begin++ = tmp;
}
}
及其反转,您可以执行以下操作:
main
示例使用/输出
line
仔细看看,如果您有任何其他问题,请告诉我。
答案 1 :(得分:0)
在源代码中,传递长度为0,这将创建一个包含0个字符的数组。
对于打印和反转,还要考虑字符串末尾的终止零点。您不希望终止零结束于字符串的开头。这将导致printf
不打印任何内容。