"C Language" reverse_string (char * string) (Recursive implementation)

Source: Internet
Author: User

Recursive implementation of the Reverse_string (char * string) function.

Flip the original string

is to change

Not print it out.

/* Write a function reverse_string (char * string) (Recursive implementation) implementation: Reverses the characters in the argument string. Requirement: You cannot use the string manipulation function in the C function library. */#include <stdio. H>void reverse_string (char * string) {static char a[100]={0};//  static variable   record string static char *p=a;      Two pointers, different places using static char *q=a;if (*string!= ')//recursive exit {*q=*string;        Before recursion, the array a element is initialized to the target string q++;reverse_string (string+1);//recursive call *string=*p;   Implement flip p++;}} int main () {char s[]= "Hello World"; reverse_string (s);p rintf ("%s\n", s); return 0;}


"C Language" reverse_string (char * string) (Recursive implementation)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.