Basic sorting algorithms-select sorting algorithms

Source: Internet
Author: User

Basic sorting algorithms-select sorting algorithms

/*************************************** * ******************************* Copyright (c) 2015, WK Studios * Filename: * Compiler: GCC, VS, VC6.0 win32 * Author: WK * Time: 2015 4 20 ************************************* * **********************************/# include <stdio. h> void Change_Sort1 (int * a, int len) {for (int I = 0; I <len; I ++) {int min = I; for (int j = I + 1; j <len; j ++) {if (a [j] <a [min]) min = j ;} int temp = a [I]; a [I] = a [m In]; a [min] = temp ;}// void Change_Sort2 (int * a, int len) {for (int I = 0; I <len; I ++) {int min = I; for (int j = I + 1; j <len; j ++) {if (a [j] <a [min]) min = j;} if (min! = I) // here optimization can reduce the number of exchanges and do not exchange with yourself {int temp = a [I]; a [I] = a [min]; a [min] = temp ;}}int main () {int a [] = {,}; Change_Sort1 (a, sizeof () /sizeof (a [0]); // Change_Sort2 (a, sizeof (a)/sizeof (a [0]); for (int I = 0; I <sizeof (a)/sizeof (a [0]); I ++) {printf ("% d", a [I]);} return 0 ;}


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.