"C Language" implement string loop right Shift function. Columns such as the string "Abcdefghi" move right 2 bits is "HIABCDEFG"

Source: Internet
Author: User
Please implement the string loop right-shift function. Columns such as the string "Abcdefghi" move right 2 bits is "HIABCDEFG"//function prototype: void Rightloopmove (char *pstr,unsigned short steps) #include <stdio.h > #include <assert.h> #include <string.h>void severse (char *p,char *q)       //String Rollover {char temp;assert (p); ASSERT (q); while (p<q) {temp=*p;*p=*q;*q=temp;p++;q--;}} void Rightloopmove (char *pstr,unsigned short steps) {int Len=strlen (PSTR); Severse (pstr,pstr+len-steps-1);       The front part flips Severse (pstr+len-steps,pstr+len-1);   Rear part rollover Severse (pstr,pstr+len-1);             Overall flip}int main () {char arr[]= "Abcdefghi"; Rightloopmove (arr,2);p rintf ("%s\n", arr); return 0;}




"C Language" implement string loop right Shift function. Columns such as the string "Abcdefghi" move right 2 bits is "HIABCDEFG"

Related Article

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.