Java冒泡排序

代码如下
c#的。回家再贴java的

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace Test2009_8_24
{
class Program
{

public static void Main(String[] args)
{
int[] a = {1,3,7,5,4,34,22,9};
BubbleSort(a);
foreach (int cc in a)
{
System.Console.WriteLine(cc);
}

}

public static void BubbleSort(int[] a)
{
int k = a.Length;
int tmp;
for (int j = a.Length-1; j >= 0; j--)
{
for (int b = 0; b < j; b++)
{
if (a[b] > a[b+1])
{
tmp = a[b];
a[b] = a[b + 1];
a[b + 1] = tmp;
}
}
}
}
}
}



贴上java代码,跟c#没啥差别。



/*
* 冒泡排序
* author : Jackey Nie
*/
public class BubbleSort {
public static void main(String[] args){
int[] a = {7,8,5,4,33,24,65,2,1,45,9};
BubbleSort(a);
for(int cc : a){
System.out.println(cc);
}
}
private static void BubbleSort(int[] a){
int i,j,tmp;
for(int k=a.length-1;k>=0;k--){
for(int m=0;m<k;m++){
if(a[m]>a[m+1]){
tmp = a[m];
a[m] = a[m+1];
a[m+1] = tmp;
}
}
}
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值