当前位置:   article > 正文

Java顺序表_java中如何定义顺序表

java中如何定义顺序表

文章目录

目录

前言

一、顺序表简介

二、顺序表实现

1.接口的实现

2.方法具体实现

2.1构造方法

2.2 增加元素

2.3 判断是否包含某个元素并返回对应的位置

2.4获取对应位置元素、更改对应位置元素值

2.5删除操作、获取顺序表长度

三、 ArrayList使用

1.使用ArrayList

2.ArrayList的遍历

总结


前言

本章开始记录Java数据结构的学习过程,之前也有过数据结构的学习,现在想来是远远不够的,没有系统化的学习,现在从这里开始系统化的总结和分享Java数据结构的学习。


一、顺序表简介

顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。

二、顺序表实现

1.接口的实现

为了实现顺序表,接下来对部分方法进行实现。代码如下(示例):

  1. public class SeqList {
  2. private int[] array;//待使用的顺序表
  3. private int size;//计算顺序表存入的数据
  4. SeqList(){
  5. //无参构造方法
  6. }
  7. SeqList(int initcapacity) {
  8. //有参构造方法,设置初始化的顺序表大小
  9. }
  10. // 新增元素,默认在数组最后新增
  11. public void add(int data) { }
  12. // 在 pos 位置新增元素
  13. public void add(int pos, int data) { }
  14. // 判定是否包含某个元素
  15. public boolean contains(int toFind) { return true; }
  16. // 查找某个元素对应的位置
  17. public int indexOf(int toFind) { return -1; }
  18. // 获取 pos 位置的元素
  19. public int get(int pos) { return -1; }
  20. // 给 pos 位置的元素设为 value
  21. public void set(int pos, int value) { }
  22. //删除第一次出现的关键字key
  23. public void remove(int toRemove) { }
  24. // 获取顺序表长度
  25. public int size() { return 0; }
  26. // 清空顺序表
  27. public void clear() { }
  28. }

2.方法具体实现

2.1构造方法

首先对于构造方法来说,有无参的构造方法,有有参的构造方法,有参的构造方法自定义顺序表的大小。代码如下(示例):

  1. SeqList(){
  2. //无参构造方法
  3. this.array = new int[10];//默认大小为10
  4. }
  5. SeqList(int initcapacity) {
  6. //有参构造方法,设置初始化的顺序表大小
  7. this.array = new int[initcapacity];//自定义大小
  8. }

2.2 增加元素

  1. // 新增元素,默认在数组最后新增
  2. public void add(int data) {
  3. //判断是否顺序表是否满了
  4. if (isFull()) {
  5. //满了2倍扩容
  6. this.array = Arrays.copyOf(this.array,2*this.array.length);
  7. }
  8. this.array[size] = data;
  9. this.size++;
  10. }
  11. // 在 pos 位置新增元素
  12. public void add(int pos, int data) {
  13. if (isFull()) {
  14. this.array = Arrays.copyOf(this.array,2*this.array.length);
  15. }
  16. //判断插入位置是否合法
  17. if (pos < 0 || pos > this.size + 1) {
  18. //不合法抛出自定义异常
  19. throw new CheckPosInAddException("插入位置不合法");
  20. }
  21. for (int i = size; i > pos - 1; i--) {
  22. array[i] = array[i-1];//先将插入位置后面的数据右移
  23. }
  24. //注意插入位置和下标的区别
  25. this.array[pos-1] = data;
  26. this.size++;
  27. }
  28. private boolean isFull() {
  29. return size == array.length;
  30. }

2.3 判断是否包含某个元素并返回对应的位置

  1. // 判定是否包含某个元素
  2. public boolean contains(int toFind) {
  3. for (int i = 0; i < this.size; i++) {
  4. if (this.array[i] == toFind) {
  5. return true;
  6. }
  7. }
  8. return false;
  9. }
  10. // 查找某个元素对应的位置
  11. public int indexOf(int toFind) {
  12. for (int i = 0; i < this.size; i++) {
  13. if(this.array[i] == toFind) {
  14. return i;//返回对应的下标位置
  15. }
  16. }
  17. throw new CheckPosInAddException("该元素不存在");
  18. }

2.4获取对应位置元素、更改对应位置元素值

  1. // 获取 pos 位置的元素
  2. public int get(int pos) {
  3. if(pos <0 || pos > this.size) {
  4. throw new CheckPosInAddException("查找位置不合法");
  5. }
  6. return this.array[pos-1];
  7. }
  8. // 给 pos 位置的元素设为 value
  9. public void set(int pos, int value) {
  10. if(pos <0 || pos > this.size) {
  11. throw new CheckPosInAddException("位置不合法");
  12. }
  13. this.array[pos-1] = value;
  14. }

2.5删除操作、获取顺序表长度

  1. //删除第一次出现的关键字key
  2. public void remove(int key) {
  3. //第一遍遍历寻找该元素
  4. for (int i = 0; i < this.size; i++) {
  5. if (array[i] == key) {
  6. //找到之后,将后面的元素对前面的进行覆盖
  7. for (int j = i; j < this.size - 1; j++) {
  8. array[j] = array[j+1];
  9. }
  10. size--;
  11. return;//只删除第一次出现的,故结束
  12. }
  13. }
  14. //没有这个关键字就抛出异常
  15. throw new CheckPosInAddException("不存在该关键字");
  16. }
  17. // 获取顺序表长度
  18. public int size() {
  19. return this.size;
  20. }
  21. // 清空顺序表
  22. public void clear() {
  23. this.size = 0;//将顺序表长度置为0也就代表顺序表清空了
  24. }

三、 ArrayList使用

1.使用ArrayList

Java中已经有对用的顺序表对象了,我们只需要会调用就行了,并不用自己一个一个实现

  1. public static void main(String[] args) {
  2. // ArrayList创建,推荐写法
  3. // 构造一个空的列表
  4. List<Integer> list1 = new ArrayList<>();
  5. // 构造一个具有10个容量的列表
  6. List<Integer> list2 = new ArrayList<>(10);
  7. list2.add(1);
  8. list2.add(2);
  9. list2.add(3);
  10. // list2.add("hello"); // 编译失败,List<Integer>已经限定了,list2中只能存储整形元素
  11. // list3构造好之后,与list中的元素一致
  12. ArrayList<Integer> list3 = new ArrayList<>(list2);
  13. // 避免省略类型,否则:任意类型的元素都可以存放,使用时将是一场灾难
  14. List list4 = new ArrayList();
  15. list4.add("111");
  16. list4.add(100);
  17. }

接下来展示Java中ArrayList的常用方法: 

方法解释
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()清空
boolean contains(Object o)判断 o 是否在线性表中
int indexOf(Object o)返回第一个 o 所在下标
int lastIndexOf(Object o)返回最后一个 o 的下标
List<E> subList(int fromIndex, int toIndex)截取部分 lis

2.ArrayList的遍历

对于顺序表的遍历,可以使用for循环+下标、foreach、使用迭代器,这三种方法也是常见的数组遍历的方法。

  1. public static void main(String[] args) {
  2. List<Integer> list = new ArrayList<>();
  3. list.add(1);
  4. list.add(2);
  5. list.add(3);
  6. list.add(4);
  7. list.add(5);
  8. // 使用下标+for遍历
  9. for (int i = 0; i < list.size(); i++) {
  10. System.out.print(list.get(i) + " ");
  11. }
  12. System.out.println();
  13. // 借助foreach遍历
  14. for (Integer integer : list) {
  15. System.out.print(integer + " ");
  16. }
  17. System.out.println();
  18. //使用迭代器
  19. Iterator<Integer> it = list.listIterator();
  20. while(it.hasNext()){
  21. System.out.print(it.next() + " ");
  22. }
  23. System.out.println();
  24. }

总结

至此,对于顺序表的总结就结束了,本文主要是了解其核心的思想并没有完全实现全部。如果有进一步的学习需求,需要去看jdk文档。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/674296
推荐阅读
相关标签
  

闽ICP备14008679号