数组是一种线性数据结构,其中所有元素按顺序排列。它是存储在连续内存位置的相同数据类型元素的集合。
public class Array{ private T[] self; private int size; @SuppressWarnings("unchecked") public Array(int size) { if (size 在核心数组类中,我们将存储数组的大小和数组初始化的一般框架。在构造函数中,我们要求数组的大小并创建一个对象并将其类型转换为我们想要的数组。
设置方法
public void set(T item, int index) { if (index >= this.size || index此方法要求将一个项目存储在数组中,并要求存储该项目的索引。
获取方法
public T get(int index) { if (index >= this.size || indexGet 方法请求索引并从该索引检索项目。
打印方式
public void print() { for (int i = 0; i打印方法只是在一行中打印数组的所有成员,并在它们之间用空格分隔每个项目。
排序数组
数组,但具有对元素本身进行排序的功能。
初始化
public class SortedArray> { private T[] array; private int size; private final int maxSize; @SuppressWarnings("unchecked") public SortedArray(int maxSize) { if (maxSize 在排序数组类中,我们将存储数组的大小并询问数组的最大大小以及数组初始化的一般框架。在构造函数中,我们要求数组的最大大小并创建一个对象并将其类型转换到我们所需的数组中。
吸气剂
public int length() { return this.size; } public int maxLength() { return this.maxSize; } public T get(int index) { if (index = this.size) { throw new IndexOutOfBoundsException("Index out of bounds: " index); } return this.array[index]; }插入方式
private int findInsertionPosition(T item) { int left = 0; int right = size - 1; while (left = this.maxSize) { throw new IllegalStateException("The array is already full"); } int position = findInsertionPosition(item); for (int i = size; i > position; i--) { this.array[i] = this.array[i - 1]; } this.array[position] = item; size ; }Insert 方法以排序形式将项目插入其位置。
删除方法
public void delete(T item) { int index = binarySearch(item); if (index == -1) { throw new IllegalArgumentException("Unable to delete element " item ": the entry is not in the array"); } for (int i = index; i检索方法
private int binarySearch(T target) { int left = 0; int right = size - 1; while (left遍历法
public void traverse(Callbackcallback) { for (int i = 0; i 回调接口
public interface Callback{ void call(T item); } 遍历中回调接口的使用
public class UppercaseCallback implements UnsortedArray.Callback{ @Override public void call(String item) { System.out.println(item.toUpperCase()); } } 未排序的数组
和上面几乎一样
初始化和 getter 是相同的。插入方式
public void insert(T item) { if (this.size >= this.maxSize) { throw new IllegalStateException("The array is already full"); } else { this.self[this.size] = item; this.size ; } }删除方法也是一样
检索方式
public Integer find(T target) { for (int i = 0; i动态数组
动态数组就像数组列表或列表。
初始化
public class DynamicArray{ private T[] array; private int size; private int capacity; @SuppressWarnings("unchecked") public DynamicArray(int initialCapacity) { if (initialCapacity 插入方式
private void resize(int newCapacity) { @SuppressWarnings("unchecked") T[] newArray = (T[]) new Object[newCapacity]; for (int i = 0; i = capacity) { resize(2 * capacity); } array[size ] = item; }删除方法
public void delete(T item) { int index = find(item); if (index == -1) { throw new IllegalArgumentException("Item not found: " item); } for (int i = index; i 1 && size其他都一样。
希望这有助于使用数组。祝你好运!
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3