Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize string inversion in C language

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to achieve string inversion in C language, which is very detailed and has a certain reference value. Friends who are interested must read it!

Code implementation # include # include # define MAX_LENGTH 50 / / maximum length char * String_Invertion (char * str); int main () {char string [Max _ LENGTH]; printf ("Please enter a string\ n"); scanf ("% s", string); String_Invertion (string); printf ("inverted string is% s\ n", string); return 0 } / * @ brief string inversion function * @ param str target string * @ return inverted string (str) * / char * String_Invertion (char * str) {if (str = = NULL) return NULL; int len = strlen (str); int I = 0; for (I = 0; I < len / 2) Replace len/2 times {/ * (bitwise) XOR exchange, other exchange methods refer to day27 * / str [I] = str [I] ^ str [len-1-I]; str [len-1-I] = str [I] ^ str [len-1-I]; str [I] = str [I] ^ str [len-1-I];} return str;}

Running result

Online reference / / Created by www.runoob.com on 15 Created by www.runoob.com on 11 Universe 9.Compact / Copyright ©2015 rookie tutorial. All rights reserved.//#include void reverse (char* s) {/ / get string length int len = 0; char* p = s; while (* p! = 0) {len++; paired strings;} / / exchange. Int I = 0; char c; while (I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report