asfman
android developer
posts - 90,  comments - 213,  trackbacks - 0
<script>
function compareFunc(a,b)
{
 if(a<b)return true;
 return false;
}
Array.prototype.sortBubble=function(compareFunc)
{
 var l=this.length;
 for(var i=l-1;i>0;i--)
 {
  for(var j=0;j<i;j++)
  {
    if(compareFunc(this[j],this[j+1]))
    {
     var temp=this[j];
     this[j]=this[j+1];
     this[j+1]=temp;
    }
  }
 }
 return this;
}
alert([1,3,4,2,5].sortBubble(compareFunc));
</script>
posted on 2007-06-21 23:01 汪杰 阅读(248) 评论(0)  编辑 收藏 引用 所属分类: javascript
只有注册用户登录后才能发表评论。

<2006年10月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(15)

随笔分类(1)

随笔档案(90)

文章分类(727)

文章档案(712)

相册

收藏夹

http://blog.csdn.net/prodigynonsense

友情链接

最新随笔

搜索

  •  

积分与排名

  • 积分 - 466814
  • 排名 - 6

最新随笔

最新评论

阅读排行榜

评论排行榜