不使用指针反向打印C字符串?

时间:2010-08-11 10:44:11

标签: c string reverse

有没有办法在不使用指针的情况下反向打印固定大小的字符串?

#include<stdio.h>

main()
{
char buffer[10];

scanf("%s", buffer);

// need to print buffer in reverse without using pointers?? 

}

10 个答案:

答案 0 :(得分:8)

一个可爱的K&amp; R功能,可以在打印之前就地翻转你的字符串吗?

#include <stdio.h>
#include <string.h>

void strrev(char *s) {
  int tmp, i, j;
  for (i = 0, j = strlen(s) - 1; i < j; i++, j--) {
    tmp = s[i];
    s[i] = s[j];
    s[j] = tmp;
  }
}

int main(int argc, const char *argv[]) {
  char buffer[10];
  scanf("%s", buffer);
  strrev(buffer);
  printf("%s\n", buffer);
  return 0;
}

答案 1 :(得分:7)

#include<stdio.h>

main()
{
  char buffer[10];

  int n = scanf("%s", buffer);

  // print the number of chars written to buffer
  if (n != EOF) {
    int len = strlen(buffer);
    if (len <= 10) {
      int i;
      for (i = len - 1; i >= 0; i--)
        printf("%c", buffer[i]);  
    } 
  }
}

答案 2 :(得分:5)

因为[]只是指针的语法糖,所以这里的版本完全没有指针,数组或其他任何东西,只有一个int。你没有说必须以某种方式存储字符串。 :)(请注意,我使用fgetc而不是缓冲区和scanf)。

[jkramer/sgi5k:.../c]# cat rev.c

#include <stdio.h>
#include <stdlib.h>

void read_print();

int main(void) {
        fputs("Enter your string, yo! ", stdout);

        read_print();

        fputs("\nDone!\n", stdout);

        return EXIT_SUCCESS;
}

void read_print() {
        int c = fgetc(stdin);

        if(c != EOF && c != '\n') {
                read_print();
                fputc(c, stdout);
        }
}
[jkramer/sgi5k:.../c]# gcc -o rev rev.c -Wall -W -Os
[jkramer/sgi5k:.../c]# ./rev 
Enter your string, yo! foobar
raboof
Done!

答案 3 :(得分:2)

这是一种递归的方式;从技术上讲,这是使用指针,但我不会用这么简单的任务进入语言 - 律师模式。

#include <stdio.h>
/* If you want it printed forward, or backward, or think of another way.. */
typedef enum {
    FRONT = 1,
    BACK,
} direction;

/* Technically still using a pointer...don't nitpick. */
void echo_string(char buffer[], size_t buflen, direction from)
{
    /* An index into the buffer to echo, which will preserve
     * its value across subsequent recursive calls.
     */
    static size_t index = 0;
    /* According to the specified direction, print from the front
     * or the back of the buffer. Advance the index (a misnomer, I guess).
     */
    if(from == FRONT) {
        printf("%c", buffer[index++]);
    }
    else {
        printf("%c", buffer[buflen - ++index]);
    }
    /* Are there any more characters to echo? Yes? Awesome! */
    if(index != buflen) {
        echo_string(buffer, buflen, from);
    }
}

int main(int argc, char **argv)
{
    char buffer[10];
    scanf("%s", buffer);
    /* Better strlen() than sizeof() here,
     * but BEWARE! scanf() is DANGEROUS!
     */
    echo_string(buffer, strlen(buffer), BACK);
    return(0);
}

答案 4 :(得分:1)

正如caf指出的那样,我们仍在使用指针..!

这是另一种解决问题的方法(反转字符串)。 此代码段(可能还有大多数其他代码)不尊重utf8之类的内容。我认为发表K&amp; R方式的帖子非常接近我的(D)所以我让我适应那个例子(并纠正了一些事情......)

#include <stdio.h>
#include <string.h>

void strrev(char *s) {

 size_t len = strlen(s) + 1;
 size_t i, j;

 for(i = 0; i < len / 2; i++) {

  j = len-1 - i-1;

  char tmp = s[j];
  s[j] = s[i];
  s[i] = tmp;

 }

}

int main(int argc, const char *argv[]) {
 char buffer[10];

 scanf("%s", buffer); // Look out for an overflow ;)
 strrev(buffer);
 puts(buffer);

 return(0);
}

答案 5 :(得分:1)

 reverse(char c[], int len)
 {
       if( ! (len / 2))
          return;
       char t =  c[0];   
       c[0] = c[len--];  
       c[len] = t;
       reverse(c, len-1);
 }

错误是留给学生的练习。

答案 6 :(得分:0)

您可以使用strrev来反转字符串。

#include <stdio.h>
#include <string.h>

main()
{
    char buffer[10];

    scanf("%s", buffer);

    strrev(buffer);
    printf("%s", buffer);
}

答案 7 :(得分:0)

void outstrreverse(const char s[])
{
    size_t l=strlen(s);
    while( l && s!=&s[--l] )
        putchar(s[l]);
    if(s[0])
        putchar(s[0]);
}

答案 8 :(得分:0)

由于C字符串,数组和指针之间的关系,练习是相当蠢的恕我直言 - C中“字符串”的最惯用描述由char *表示,而不是数组。您的(OP)标题和帖子在字符串和字符[固定长度]之间的定义不同。

The OP should read and understand this FAQ entry,以及它与此处的帖子之间:轻松找出解决方案 - 并在必要时为教师/法官辩护。

我将对此发表评论:永远不要使用scanf(“%s”,缓冲区)来填充固定长度的字符串。如果必须使用scanf()来执行此操作,请使用字段宽度说明符:例如scanf(“%9s”,缓冲区);如果缓冲区是[10],你需要一个9的说明符,因为scanf填充缓冲区:否则你必须小心龙!你也可以逐个字符地扫描并用循环边界来规避问题,但这可能会降低效率。

答案 9 :(得分:-3)

#include <stdio.h>
#include <conio.h>

void reverse(char a[], int s, int sc );

void reverse(char a[], int s, int sc ){

if ((sc-s)<(s-1))
{
a[sc-s]^=a[s-1];
a[s-1]^=a[sc-s];
a[sc-s]^=a[s-1];
reverse (a, s-1, sc) ;

}

}

void main (){


char a[]="ABCDEFG";

reverse(a, 7, 7);
printf("%d",a);
getch(); //i just use it to freeze the screen

}