C: Bubble sorting: Sort several strings alphabetically (from small to large) output

Source: Internet
Author: User
#include <stdio.h> #include <string.h>void sort (char *a[]), void print (char *a[]), int main () {char *a[] ={"CEO "," define "," basic "," abc "," Empty "};p rintf (" The original sequence is: \ n ");p rint (a); sort (a);p rintf (" \ n "sequence is: \ n");p rint (a);p rintf ( "\ n"); return 0;} void sort (char *a[]) {int I,j;char *temp;for (i=0;i<4;i++)//Note is i<4{for (j=0;j<4;j++)//note is j<4, because the following to + 1 and the following string compare {if (strcmp (a[j],a[j+1]) >0)//String comparison: >0 indicates that the preceding string is larger than the following (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]);}}

C: Bubble sorting: Sort several strings alphabetically (from small to large) output

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.