摘要: package sort;import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Scanner;public class MergeSort { public static void merge... 阅读全文
posted @ 2014-03-04 13:33 bingtel 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 原理:N: the number of elementsvoid inser_sort(Type A[], int N){ for(P=1;P0&&A[j-1]>Tmp;j--) { A[j] = A[j-1]; } A[j] = Tmp... 阅读全文
posted @ 2014-03-04 10:26 bingtel 阅读(133) 评论(0) 推荐(0) 编辑
摘要: package bitmap;public class BitMap { private byte[] bytes; public BitMap(byte[] bytes) { super(); this.bytes = bytes; } public BitMap() { super(); ... 阅读全文
posted @ 2014-03-04 08:58 bingtel 阅读(2117) 评论(0) 推荐(0) 编辑