package com.lxl.array.pojo;
/**
* 有序数组对象封装
* @author xiaole
*
*/
public class OrdArray {
private int[] a;
private int nElems;// 数据实际长度
public OrdArray(int a) {
this.a = new int[a];
this.nElems = 0;
}
public int size() {
return nElems;
}
public int find(int searchKey) {
int start = 0;
int end = nElems;
int curIn;
while(true) {
curIn = (start + end) / 2;
if (a[curIn] == searchKey)
return curIn;
else if (start > end)
return nElems; // 未找到
else {
if (a[curIn] > searchKey)
end = curIn - 1;
else
start = curIn + 1;
}
}
}
public void insert (int value) {
int j;
for (j = 0; j < nElems; j++)
if (a[j] > value)
break;
for (int k = nElems ; k > j; k--)
a[k] = a[k-1];
a[j] = value;
nElems++;
}
public boolean delete (int value) {
int find = find(value);
if (find == nElems)
return false;
else {
for (int k = find; k < nElems-1; k++)
a[k] = a[k+1];
nElems--;
return true;
}
}
public void display() {
for (int i = 0; i < nElems ;i++)
System.out.println(a[i]);
}
}
1、有序数组的好处,查找速度可以使用二分法,比无序数组快得多。
2、有序数组的坏处,插入操作是需要对所有靠后的数据进行移动,速度较慢。
3、无序数组与有序数组,删除操作因为都要有前移的操作,所以都很慢。
4、有序数组应用于查找频繁的情况。