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

冒泡算法

时间:2014-12-06 18:09:53      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   for   on   

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = { 1, 2, 3, 4, 5, 6 };

            bubble_sort(array, SortType.rise);

            for (int i = 0; i < array.Length; i++)
            {
                Console.WriteLine(array[i]);
            }


            Console.ReadKey();

        }


        //冒泡算法
        static void bubble_sort(int[] unsorted, SortType type) 
        {
            if (type == SortType.rise)
            {
                for (int i = 0; i < unsorted.Length; i++)
                {
                    for (int j = i; j < unsorted.Length; j++)
                    {
                        if (unsorted[i] > unsorted[j])
                        {
                            int temp = unsorted[i];
                            unsorted[i] = unsorted[j];
                            unsorted[j] = temp;
                        }
                    }
                }
            }
            else if(type == SortType.drop) 
            {
                for (int i = 0; i < unsorted.Length; i++)
                {
                    for (int j = i; j < unsorted.Length; j++)
                    {
                        if (unsorted[i] < unsorted[j])
                        {
                            int temp = unsorted[i];
                            unsorted[i] = unsorted[j];
                            unsorted[j] = temp;
                        }
                    }
                }
            }


        }

    }

    public enum SortType 
    {
        drop,
        rise
    }
    

}

 

原文地址:http://www.cnblogs.com/kkun/archive/2011/11/23/2260280.html

 

冒泡算法

标签:style   blog   http   io   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/plateFace/p/4148419.html

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