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

冒泡排序

时间:2016-02-19 10:20:17      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

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

namespace ConsoleApplication4
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = new int[5]{2,1,3,4,5};
            for (int i = 0; i < array.Length; i++)
            {
                for (int j = i + 1; j < array.Length; j++)
                {
                    if (array[j] < array[i])
                    {
                        int temp = array[i];
                        array[i] = array[j];
                        array[j] = temp;
                    }
                }
            }
            foreach (int n in array)
            
            Console.WriteLine(n);
            Console.ReadLine();
        }
    }
}

  技术分享

冒泡排序

标签:

原文地址:http://www.cnblogs.com/zhuxu/p/5199822.html

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