摘要:
win+R调出运行窗口: 输入services.msc,查找 跳出服务窗口,点击windows update设置禁用即可 Windows Update Medic Service没办法禁用,需要采用其他的办法 通过“Win”+ “R”组合键,打开运行窗口,输入“regedit”, 在注册表中找到“计 阅读全文
摘要:
数组ArrayList 数组ArrayList容量本身是不固定的,根据存储的数据动态变化 输出ArrayList元素:每个放到ArrayList里的数组元素都会转换为object类型存放 排序 ArrayList的增加与删除元素 想ArrayList插入元素 删除ArrayList元素 arrLis 阅读全文
摘要:
冒泡排序基础 冒泡排序原理图分析 tmp在算法中起到数据交换的作用 c int[] intNums = { 12,6,9,3,8,7 }; int tmp = intNums[0]; // 一共5次冒泡,从1开始 for(int i = 1; i intNums[j]) { tmp = intNum 阅读全文
摘要:
数组定义 定义数组并赋值 求最大值最小值 在原有数组中新增 c int[] arrS = new int[4] { 12, 13, 14, 15 }; int[] tmp = new int[arrS.Length + 1]; //新增一个数据 for(int i = 0; i = 0) { int 阅读全文