赞
踩
顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。
首先我们先来对顺序表的基本原理加以介绍:
public class SeqList { private int[] array; private int usedSize; public static final int DEFAULT_SIZE = 10; public SeqList(){ this.array = new int[DEFAULT_SIZE]; //这里我们是只实现了一个大小为10个元素的数组,而在java的顺序表中会实现扩容 } // 新增元素,默认在数组最后新增 public void add(int data) {} // 在 pos 位置新增元素 public void add(int pos, int data) {} // 判定是否包含某个元素 public boolean contains(int toFind) {} // 查找某个元素对应的位置 public int indexOf(int toFind) {} // 获取 pos 位置的元素 public int get(int pos) {} // 给 pos 位置的元素设为 value public void set(int pos, int value) {} //删除第一次出现的关键字key public boolean remove(int toRemove) {} // 获取顺序表长度 public int size() {} // 清空顺序表 public void clear() {} // 打印顺序表,注意:该方法并不是java顺序表中的方法,仅仅是方便看测试结果给出的 public void display() {} }
// 新增元素,默认在数组最后新增
public void add(int data) {
if(usedSize == array.length){
resize();
}
this.array[usedSize] = data;
this.usedSize++;
}
//进行数组扩容
private void resize() {
this.array = Arrays.copyOf(this.array, 2*this.array.length);
}
// 在 pos 位置新增元素 public void add(int pos, int data) { if(pos<0||pos>array.length){ throw new IndexOutOfException("你需要加入数据的位置不合法"); } if(this.usedSize==array.length){ resize(); } for (int i = this.usedSize-1; i>=pos ; i--) { this.array[i+1] = this.array[i]; } this.array[pos] = data; this.usedSize++; } //定义一个异常,用来判断插入的位置是否合法 public class IndexOutOfException extends RuntimeException{ public IndexOutOfException() { } public IndexOutOfException(String message) { super(message); } }
//删除第一次出现的关键字key public boolean remove(int toRemove) { int index = indexOf(toRemove); if(index == -1) { System.out.println("没有这个数据"); return false; } for (int i = index;i < usedSize-1;i++) { this.array[i] = this.array[i+1]; } usedSize --; //elem[usedSize] = null; // 如果里面是引用类型 那么此时就需要手动置空 this.array[usedSize] = 0; return true; }
// 判定是否包含某个元素
public boolean contains(int toFind) {
for (int i = 0; i < this.usedSize; i++) {
if (array[i]==toFind){
return true;//如果是判断引用类型 就要换equals方法()
}
}
return false;
}
// 获取 pos 位置的元素
public int get(int pos) {
if(pos<0||pos>array.length){
throw new IndexOutOfException("查找的数据位置不合法");
}
return array[pos];
}
// 获取顺序表长度
public int size() {
return this.usedSize;
}
// 清空顺序表
public void clear() {
for (int i = 0; i < this.usedSize; i++) {
array[i]=0;
//如果是引用类型 就要置为null
}
}
// 给 pos 位置的元素设为 value
public void set(int pos, int value) {
if(pos<0||pos>array.length){
throw new IndexOutOfException("查找的数据位置不合法");
}
this.array[pos-1]=value;
}
在集合框架中,ArrayList是一个普通的类,实现了List接口,具体框架图如下:
【说明】
方法 | 解释 |
---|---|
boolean add(E e) | 尾插 e |
void add(int index, E element) | 将 e 插入到 index 位置 |
boolean addAll(Collection<? extends E> c) | 尾插 c 中的元素 |
E remove(int index) | 删除 index 位置元素 |
boolean remove(Object o) | 删除遇到的第一个 o |
E get(int index) | 获取下标 index 位置元素 |
E set(int index, E element) | 将下标 index 位置元素设置为 element |
void clear() | void clear() |
boolean contains(Object o) | 判断 o 是否在线性表中 |
int indexOf(Object o) | 返回第一个 o 所在下标 |
int lastIndexOf(Object o) | 返回最后一个o 所在下标 |
List< E > subList(int fromIndex, int toIndex) | 截取部分 list |
ArrayList可以使用 三种方式遍历:for循环+下标、foreach、使用迭代器
public static void main(String[] args) { List<Integer> list = new ArrayList<>(); list.add(1); list.add(2); list.add(3); list.add(4); list.add(5); // 使用下标+for遍历 for (int i = 0; i < list.size(); i++) { System.out.print(list.get(i) + " "); } System.out.println(); // 借助foreach遍历 for (Integer integer : list) { System.out.print(integer + " "); } System.out.println(); Iterator<Integer> it = list.listIterator(); while(it.hasNext()){ System.out.print(it.next() + " "); } System.out.println(); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。