码迷,mamicode.com
首页 > 编程语言 > 详细

排序算法-简单选择排序

时间:2017-12-27 17:59:15      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:linq   system   ext   选择排序   .com   col   pac   body   ini   

技术分享图片

技术分享图片

实现:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _007_简单选择排序
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] data = new int[] { 42, 20, 17, 27, 13, 8, 17, 48 };
            SimpleSelectSort(data);
            for (int i = 0; i < data.Length; i++)
            {
                Console.Write(data[i] + " ");
            }
        }
        static void SimpleSelectSort(int[] dataArray)
        {
            for (int i = 0; i < dataArray.Length-1; i++)
            {
                int minIndex = i; //最小值索引
                for (int j = i+1; j < dataArray.Length; j++)
                {
                    if (dataArray[j] < dataArray[minIndex])//找到最小的数值
                        minIndex = j;
                }
                if (minIndex != i)//然后交换元素
                {
                    int temp = dataArray[i];
                    dataArray[i] = dataArray[minIndex];
                    dataArray[minIndex] = temp;
                }
            }
        }
    }
}

 

排序算法-简单选择排序

标签:linq   system   ext   选择排序   .com   col   pac   body   ini   

原文地址:https://www.cnblogs.com/rongweijun/p/8126070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!