- 博客(3)
- 资源 (6)
- 收藏
- 关注
原创 插入排序
/* * 插入排序,就是把未排序的数据插入到已排序的数据中去,主要涉及查找以及移动元素 */ public class InsSort { public static void sort(int[] array){ int temp; for(int i=1;i<array.length;i++){ for(int j=i-1;j>=0;j--){ if(array[j
2013-08-26 14:21:00 336
原创 冒泡排序
public class bubsort { public static void sort(int[] a){ int temp; for(int i=a.length-1;i>0;i--){ for(int j=0;j<i;j++){ if(a[j]>a[j+1]){ temp = a[j]; a[j]=a[j+1]; a[j+1]=t
2013-08-26 11:24:58 303
原创 求最小公倍数
辗转相除法求出最大公约数 #include void main(){ int n; int m; int r; int a,b; scanf("%d%d\n",&n,&m); if(m>1000||n>1000||m<0||n<0){ return; } a = n; b = m; r = a%b;
2013-08-24 18:07:17 372
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人