Insert Sort algorithm

Source: Internet
Author: User

1#include <stdio.h>2 3 int*insertion (int*array,intn);4 voidPrintf_array (int*array,intn);5 6 intMain ()7 {8     inta[Ten] = {101, -, the,Panax Notoginseng, About, $, -, the, the, One};9Insertion (A,Ten);Ten  OnePrintf_array (A,Ten); A  - } -  the  - int*insertion (int*array,intN) - { -     inti; +     intJ; -     intkey; +      for(i =1; I < n; i + +) A     { atKey =Array[i]; -j = i-1; -          while(J >=0) && (Array[j] >key)) -         { -Array[j +1] =Array[j]; -J--; in         } -array[j+1] =key; to     } +     returnArray; - } the  *  $ voidPrintf_array (int*array,intN)Panax Notoginseng { -     inti =0; the      for(i; i < n; i + +)) +     { Aprintf"%d", Array[i]); the     } +printf"\ n"); -}

Introduction to the third edition of the algorithm introduction of the first algorithm insert sort

C Language Implementation code

Insert sort is the basis of the foundation

According to the book,

Insert Sort algorithm

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.