摘要:
package jihe;import java.util.ArrayList;import java.util.List;public class xitizuoye { public static void main(String[] args) { List... 阅读全文
摘要:
第三题package xin_learn;import org.omg.Messaging.SyncScopeHelper;class grandfather { public grandfather() { System.out.println("爷爷"); }}c... 阅读全文
摘要:
package learn;import java.util.Random;public class yanzhengma { public static void main(String[] args) { // TODO Auto-generated method stub ... 阅读全文
摘要:
//九九乘法表 作业 for(int c =1; c< 10; c++) { for(int a =1; a < c + 1 ; a++) { if(a < 10) ... 阅读全文
摘要:
//一维数组 int myarry[] = new int [5]; //索引是从0开始 myarry[0] = 100; myarry[2] = 200; //初始化 int arry[] = new int[]{1,2,3,4,5}; ... 阅读全文
摘要:
//升序排序 int sz []= {3,45,33,68,73,98,16,28}; for (int a : sz ) { System.out.print (a + " "); } ... 阅读全文
摘要:
定义: 二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分... 阅读全文