摘要:
二分查找法一般指二分查找二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间... 阅读全文
摘要:
阅读全文
摘要:
public class maopao { public static void main(String[] args) { //冒泡排序 int[]array={12,22,13,44,11,33}; for(int ... 阅读全文
摘要:
public class maxandmin { public static void main(String[] args) { int i[]=new int[]{0,1,5,4,9,2,4,8,15}; int c = 1; int b = ... 阅读全文
摘要:
ublic class 随机数 { public static void main(String[] args) { for(int s=1;s<=7;s++){ int x=(int)(Math.random()*36); if(x!=0){ ... 阅读全文