Sorting-fast sorting (sorting scheme when small arrays are optimized) and array sorting scheme optimized

Source: Internet
Author: User

Sorting-fast sorting (sorting scheme when small arrays are optimized) and array sorting scheme optimized

# Include <iostream> # include <stdlib. h> using namespace std; # define MAX_LENGTH_INSERT_SORT 7 # define MAXSIZE 10 void ISort (int k [], int n) {int I, j, temp; for (I = 1; I <n; I ++) {if (k [I] <k [I-1]) {temp = k [I]; for (j = I-1; k [j]> temp; j --) // locate the position and move it backwards {k [j + 1] = k [j];} k [j + 1] = temp ;}} void InserSort (int k [], int low, int high) {ISort (k + low, high-low + 1);} void swap (int k [], int low, int high) {int temp; temp = k [low]; k [low] = k [high]; k [high] = temp;} int Partition (int k [], int low, int high) {int point; int m = low + (high-low)/2; if (k [low]> k [high]) {swap (k, low, high );} if (k [m]> k [high]) {swap (k, m, high);} if (k [m]> k [low]) // enables low to store the Intermediate Value {swap (k, m, low);} point = k [low]; while (low 

 

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.