美文网首页
冒泡排序

冒泡排序

作者: 唯一的one | 来源:发表于2018-11-29 20:31 被阅读0次

    第一种方法:


    image.png
    image.png
    int[] a = { 10, 5, 7, 20, 9, 1 };
                for (int i = 0; i < a.Length - 1; i++)
                {
                    for (int j = 0; j < a.Length - 1; j++)
                    {
                        if (a[j] > a[j + 1])
                        {
                            int b = a[j];
                            a[j] = a[j + 1];
                            a[j + 1] = b;
                        }
                    }
                }
                foreach (var item in a)
                {
                    Console.WriteLine(item);
                }
    

    相关文章

      网友评论

          本文标题:冒泡排序

          本文链接:https://www.haomeiwen.com/subject/mwkqcqtx.html