摘要:
public class BubbleSort_Two { public static void bubbleSort_Two(int[] list){ //j在最外层定义 boolean needNextPass = true; for(int i=0,j;ilist[j+1]){ int tem 阅读全文
摘要:
public class BinarySort { public static int binarySort(int[] list, int low, int high, int key){ if(low high) return 1; else{ int mid = (low+high)/2; i 阅读全文
摘要:
public class SelectSort { public static void selectSort(int [] list){ for(int i=0;ilist[j]) temp = j; } //一次迭代完成 判断最小元素放到前面 if(temp!=i){ int result = 阅读全文
摘要:
public class QuickSort { public static void quickSort(int [] list){ quickSort(list, 0, list.length 1); } public static void quickSort(int[] list, int 阅读全文
摘要:
public class ShellSort { public static void shellSort(int[] list){ int d = list.length; int temp = 0; while(true){ d = (int)Math.ceil(d/2);//保证向上取整 的d 阅读全文
摘要:
交换机支持的命令:(注:交换机支持命令对应的为思科2系列交换机。) 交换机基本状态: switch: ;交换机的ROM态 rommon ;路由器的R状态 switch ;用户模式 switch ;特权模式 switch(config) ;全局配置模式 switch(vlan) 交换机VLAN配置模式 阅读全文