标签:table 重要 错题 中继 语法 image ngx 对象 logs
public boolean Search( int[] data,int min, int max, int target)
{
boolean found = false;
int midpoint = (min + max) / 2;
if (data[midpoint]==target)
found = true;
else if (data[midpoint]>target)
{
if (min <= midpoint - 1)
found = Search(data, min, midpoint - 1, target);
}
else if (midpoint + 1 <= max)
found = Search(data,midpoint + 1, max, target);
return found;
}
public boolean search(int ele){
int temp=ele;
int low=0;
int high=num.length-1;
int mid=(high+low)/2;
while(low<=high){
if(num[mid]==temp){
return true;
}
else if(temp>num[mid]){
low=mid+1;
}
else{
high=mid-1;
}
mid=(high+low)/2;
}
return false;
}
public static void sort(int[] a) {
for (int i = 0; i < a.length; i++) {
int min = i;
for (int j = i + 1; j < a.length; j++) {
if (a[j] < a[min]) {
min = j;
}
}
if (min != i) {
int temp = a[i];
a[i] = a[min];
a[min] = temp;
}
}
}
public static void sort(int[] a) {
for (int i = 0; i < a.length - 1; i++) {
for (int j = 0; j < a.length - i - 1; j++) {
if (a[j] > a[j + 1]) {
int temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
public class Merge {
private static int[] aux;
public static void sort(int[] a) {
aux = new int[a.length];
sort(a, 0, a.length - 1);
}
public static void sort(int[] a, int low, int high) {
if (low >= high) {
return;
}
int mid = (low + high) / 2;
sort(a, low, mid);
sort(a, mid + 1, high);
merge(a, low, mid, high);
}
Number[] n=new Number[20];
然后在类的结构体里初始化n数组时
public HashLinked(int[] a){
for(int i=0;i<a.length;i++){
n[i].num=a[i];
}
}
每次都会报错:
ele[i]=new Number(0);
这样就把数组给初始化了。
Number I=new Number(Initial);
for(int i=0;i<ele.length;i++){
ele[i]=I
}
而这一步不只是赋值给他,并且是将地址都指向了I所在的位置,因此改变这个地址上的数值,数组元素都跟着变了。
long t1=System.currentTimeMillis();
改为
long t1=System.nanoTime();
就行了。
无考试。
教材学习中的问题和解决过程(2分)
代码调试中的问题和解决过程(3分)
本周有效代码超过300分行的(加1分)
结对照片
结对学习内容
对上周及本周的考试内容进行了探讨,并通过上网查询等方式深入分析,直到将问题理解。
一起制作博客,markdown,遇到问题相互询问,并解决。
第八周跟第七周博客时间几乎重了,所以没什么新的感想,那就祝学姐越来越瘦,学长越来越帅吧(小嘴抹了蜜)。
代码行数(实际/预期) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 10000行 | |||
第一周 | 119/119 | 3/3 | 20/20 | |
第二周 | 302/300 | 2/5 | 25/45 | |
第三周 | 780/800 | 2/7 | 25/70 | |
第四周 | 1500/1300 | 2/9 | 25/95 | |
第五周 | 3068/2500 | 3/12 | 25/120 | |
第六周 | 4261/4000 | 2/14 | 25/145 | |
第七、八周 | 7133/7000 | 3/17 | 25/170 |
计划学习时间:25小时
实际学习时间:20小时
标签:table 重要 错题 中继 语法 image ngx 对象 logs
原文地址:https://www.cnblogs.com/hp12138/p/11790332.html