代码改变世界

阅读排行榜

堆排序算法

2017-11-30 18:28 by lc_java, 174 阅读, 收藏,
摘要: package com.neuedu.algorithm; import java.util.Arrays; public class HeapSort { private static int array[]= {9,8,7,6,5,4,3,2,1}; //堆排序 public void heapSort(){ buildHeap(); System.out.printl... 阅读全文

随机数

2017-08-14 17:40 by lc_java, 160 阅读, 收藏,
摘要: public class TestRandom { public static void main(String[] args) { int a[]=new int[10]; int temp; for (int i = 0; i a[j]) { temp=a[i]; ... 阅读全文

AJAX小练习

2017-08-20 15:52 by lc_java, 136 阅读, 收藏,
摘要: /index.jsp /e.jsp /class AServlet 阅读全文
上一页 1 ··· 7 8 9 10 11