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

冒泡排序之javascript

时间:2019-08-21 23:19:54      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:dex   console   ini   ted   div   描述   排序   ret   selection   

冒泡排序是一种简单的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果它们的顺序错误就把它们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。这个算法的名字由来是因为越小的元素会经由交换慢慢“浮”到数列的顶端。

1.1 算法描述

  • 比较相邻的元素。如果第一个比第二个大,就交换它们两个;
  • 对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对,这样在最后的元素应该会是最大的数;
  • 针对所有的元素重复以上的步骤,除了最后一个;
  • 重复步骤1~3,直到排序完成。
   <script type="text/javascript">
        
        var BubbleSort ={};
        BubbleSort.arrary  =[];
        BubbleSort.init =function(){    
            this.arrary.length =0;
            this.arrary.push(3);
            this.arrary.push(1);
            this.arrary.push(44);
            this.arrary.push(38);
            this.arrary.push(5);
            this.arrary.push(47);
            this.arrary.push(15);
            this.arrary.push(50);
            this.arrary.push(48);
            this.arrary.push(46);
            this.arrary.push(27);
            this.arrary.push(26);
            this.arrary.push(36);

        }
        BubbleSort.show =function(){
            for(var i=0;i<this.arrary.length;i++)
            {
                console.log(this.arrary[i]);
            }
        }
        BubbleSort.bubbleSort = function(arr)
        {
            var len = arr.length;

            var minIndex ,temp;

            for(var i=0;i<len-1;i++){
                
                for(var j=0;j<len-1-i;j++)
                {
                    if(arr[j]>arr[j+1])
                    {
                        var temp = arr[j+1];
                        arr[j+1] = arr[j];
                        arr[j] =temp;
                    }
                }

            }

           return arr;
        }

        BubbleSort.init();
        console.log("unsorted arry");
        BubbleSort.show();
        console.log("sorted arry");
        BubbleSort.arrary = BubbleSort.selectionSort(BubbleSort.arrary);
        BubbleSort.show();


        </script>

  

  

 

冒泡排序之javascript

标签:dex   console   ini   ted   div   描述   排序   ret   selection   

原文地址:https://www.cnblogs.com/ms_senda/p/11391706.html

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