C language: Bubble Sorting: sorts several strings in alphabetical order (from small to large) and outputs them

Source: Internet
Author: User

C language: Bubble Sorting: sorts several strings in alphabetical order (from small to large) and outputs them

# Include

 
  
# Include

  
   
Void sort (char * a []); void print (char * a []); int main () {char * a [] = {"ceo", "define ", "basic", "abc", "empty"}; printf ("the original sequence is \ n"); print (a); sort (); printf ("\ n: \ n"); print (a); printf ("\ n"); return 0 ;} void sort (char * a []) {int I, j; char * temp; for (I = 0; I <4; I ++) // note that I <4 {for (j = 0; j <4; j ++) // note that j <4, because we need to compare the following strings with the strings {if (strcmp (a [j], a [j + 1])> 0) // string comparison:> 0 indicates that if the preceding string is larger than the latter, {temp = a [j]; a [j] = a [j + 1]; a [j + 1] = temp ;}}} void print (char * a []) {int I; for (I = 0; I <5; I ++) {printf ("% s", a [I]) ;}}

  

 

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.