当前位置:   article > 正文

【数据结构】5.ArrayList与顺序表

【数据结构】5.ArrayList与顺序表

目录

1.线性表

2.顺序表

2.1接口的实现

3.ArrayList简介

4.ArrayList使用

4.1ArrayList的构造

4.2ArrayList常见操作

4.3ArrayList的遍历

4.4ArrayList的扩容机制

5.ArrayList的具体使用

5.1简单的洗牌算法

5.2杨辉三角


1.线性表

线性表是n个具有相同特性的数据元素的有限序列。线性表是一种在实际中广泛使用的数据结构,常见的线性表:顺序表、链表、栈、队列……

线性表在逻辑上时线性结构,也就是说是连续的一条直线,但是在物理结构上不一定是连续的,线性表在物理上存储时,通常以数组和链式结构的形式存储。

2.顺序表

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

2.1接口的实现
  1. public class SeqList {
  2. private int[] array;
  3. private int size;
  4. // 默认构造方法
  5. SeqList(){ }
  6. // 将顺序表的底层容量设置为initcapacity
  7. SeqList(int initcapacity){ }
  8. // 新增元素,默认在数组最后新增
  9. public void add(int data) { }
  10. // 在 pos 位置新增元素
  11. public void add(int pos, int data) { }
  12. // 判定是否包含某个元素
  13. public boolean contains(int toFind) { return true; }
  14. // 查找某个元素对应的位置
  15. public int indexOf(int toFind) { return -1; }
  16. // 获取 pos 位置的元素
  17. public int get(int pos) { return -1; }
  18. // 给 pos 位置的元素设为 value
  19. public void set(int pos, int value) { }
  20. //删除第一次出现的关键字key
  21. public void remove(int toRemove) { }
  22. // 获取顺序表长度
  23. public int size() { return 0; }
  24. // 清空顺序表
  25. public void clear() { }
  26. // 打印顺序表,注意:该方法并不是顺序表中的方法,为了方便看测试结果给出的
  27. public void display() { }
  28. }

3.ArrayList简介

在集合框架中,ArrayList是一个普通的类,实现了List接口。

【说明】:

  1. ArrayList是以泛型方式实现的,使用时必须要先实例化。
  2. ArrayList实现了RandomAccess接口,表明ArrayList支持随机访问。
  3. ArrayList实现了Clonable接口,表明ArrayList是可以clone的。
  4. ArrayList实现了Serializable接口,表明ArrayList是支持序列化的。
  5. 和Vector不同,ArrayList不是线程安全的,在单线程下可以使用,在多线程中可以选择Vector或者CopyOnWriteArrayList。
  6. ArrayList底层是一段连续的空间,并且可以动态扩容,是一个动态类型的顺序表。

4.ArrayList使用

4.1ArrayList的构造
方式解释
ArrayList()无参构造
ArrayList(Collection<?exrtends E>c)利用其他Collection构建ArrayList
ArrayList(int initialCapacity)指定顺序表初始容量
  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. }
4.2ArrayList常见操作
方法解释
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)截取部分list
  1. public static void main(String[] args) {
  2. List<String> list = new ArrayList<>();
  3. list.add("JavaSE");
  4. list.add("JavaWeb");
  5. list.add("JavaEE");
  6. list.add("JVM");
  7. list.add("测试课程");
  8. System.out.println(list);
  9. // 获取list中有效元素个数
  10. System.out.println(list.size());
  11. // 获取和设置index位置上的元素,注意index必须介于[0, size)间
  12. System.out.println(list.get(1));
  13. list.set(1, "JavaWEB");
  14. System.out.println(list.get(1));
  15. // 在list的index位置插入指定元素,index及后续的元素统一往后搬移一个位置
  16. list.add(1, "Java数据结构");
  17. System.out.println(list);
  18. // 删除指定元素,找到了就删除,该元素之后的元素统一往前搬移一个位置
  19. list.remove("JVM");
  20. System.out.println(list);
  21. // 删除list中index位置上的元素,注意index不要超过list中有效元素个数,否则会抛出下标越界异常
  22. list.remove(list.size()-1);
  23. System.out.println(list);
  24. // 检测list中是否包含指定元素,包含返回true,否则返回false
  25. if(list.contains("测试课程")){
  26. list.add("测试课程");
  27. }
  28. // 查找指定元素第一次出现的位置:indexOf从前往后找,lastIndexOf从后往前找
  29. list.add("JavaSE");
  30. System.out.println(list.indexOf("JavaSE"));
  31. System.out.println(list.lastIndexOf("JavaSE"));
  32. // 使用list中[0, 4)之间的元素构成一个新的SubList返回,但是和ArrayList共用一个elementData数组
  33. List<String> ret = list.subList(0, 4);
  34. System.out.println(ret);
  35. list.clear();
  36. System.out.println(list.size());
  37. }
4.3ArrayList的遍历

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. Iterator<Integer> it = list.listIterator();
  19. while(it.hasNext()){
  20. System.out.print(it.next() + " ");
  21. }
  22. System.out.println();
  23. }

注意:

  1. ArrayList最常使用的遍历方式:for循环+下标以及foreach
  2. 迭代器是设计模式的一种。
4.4ArrayList的扩容机制

这个代码有什么缺陷吗?为什么?

  1. public static void main(String[] args) {
  2. List<Integer> list = new ArrayList<>();
  3. for (int i = 0; i < 100; i++) {
  4. list.add(i);
  5. }
  6. }

ArrayList是一个动态类型的顺序表,即:在插入元素的过程中会自动扩容。以下是ArrayList源码中扩容方式:

  1. Object[] elementData; // 存放元素的空间
  2. private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; // 默认空间
  3. private static final int DEFAULT_CAPACITY = 10; // 默认容量大小
  4. public boolean add(E e) {
  5. ensureCapacityInternal(size + 1); // Increments modCount!!
  6. elementData[size++] = e;
  7. return true;
  8. }
  9. private void ensureCapacityInternal(int minCapacity) {
  10. ensureExplicitCapacity(calculateCapacity(elementData, minCapacity));
  11. }
  12. private static int calculateCapacity(Object[] elementData, int minCapacity) {
  13. if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
  14. return Math.max(DEFAULT_CAPACITY, minCapacity);
  15. }
  16. return minCapacity;
  17. }
  18. private void ensureExplicitCapacity(int minCapacity) {
  19. modCount++;
  20. // overflow-conscious code
  21. if (minCapacity - elementData.length > 0)
  22. grow(minCapacity);
  23. }
  24. private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
  25. private void grow(int minCapacity) {
  26. // 获取旧空间大小
  27. int oldCapacity = elementData.length;
  28. // 预计按照1.5倍方式扩容
  29. int newCapacity = oldCapacity + (oldCapacity >> 1);
  30. // 如果用户需要扩容大小 超过 原空间1.5倍,按照用户所需大小扩容
  31. if (newCapacity - minCapacity < 0)
  32. newCapacity = minCapacity;
  33. // 如果需要扩容大小超过MAX_ARRAY_SIZE,重新计算容量大小
  34. if (newCapacity - MAX_ARRAY_SIZE > 0)
  35. newCapacity = hugeCapacity(minCapacity);
  36. // 调用copyOf扩容
  37. elementData = Arrays.copyOf(elementData, newCapacity);
  38. }
  39. private static int hugeCapacity(int minCapacity) {
  40. // 如果minCapacity小于0,抛出OutOfMemoryError异常
  41. if (minCapacity < 0)
  42. throw new OutOfMemoryError();
  43. return (minCapacity > MAX_ARRAY_SIZE) ? Integer.MAX_VALUE : MAX_ARRAY_SIZE;
  44. }

【总结】

  1. 检测是否真正需要扩容,如果调用grow准备扩容。
  2. 预估需要库容的大小
  3. 使用copyOf进行扩容

5.ArrayList的具体使用

5.1简单的洗牌算法
  1. public class Card {
  2. public int rank; // 牌面值
  3. public String suit; // 花色
  4. @Override
  5. public String toString() {
  6. return String.format("[%s %d]", suit, rank);
  7. }
  8. }
  1. import java.util.List;
  2. import java.util.ArrayList;
  3. import java.util.Random;
  4. public class CardDemo {
  5. public static final String[] SUITS = {"♠", "♥", "♣", "♦"};
  6. // 买一副牌
  7. private static List<Card> buyDeck() {
  8. List<Card> deck = new ArrayList<>(52);
  9. for (int i = 0; i < 4; i++) {
  10. for (int j = 1; j <= 13; j++) {
  11. String suit = SUITS[i];
  12. int rank = j;
  13. Card card = new Card();
  14. card.rank = rank;
  15. card.suit = suit;
  16. deck.add(card);
  17. }
  18. }
  19. return deck;
  20. }
  21. private static void swap(List<Card> deck, int i, int j) {
  22. Card t = deck.get(i);
  23. deck.set(i, deck.get(j));
  24. deck.set(j, t);
  25. }
  26. private static void shuffle(List<Card> deck) {
  27. Random random = new Random(20190905);
  28. for (int i = deck.size() - 1; i > 0; i--) {
  29. int r = random.nextInt(i);
  30. swap(deck, i, r);
  31. }
  32. }
  33. public static void main(String[] args) {
  34. List<Card> deck = buyDeck();
  35. System.out.println("刚买回来的牌:");
  36. System.out.println(deck);
  37. shuffle(deck);
  38. System.out.println("洗过的牌:");
  39. System.out.println(deck);
  40. // 三个人,每个人轮流抓 5 张牌
  41. List<List<Card>> hands = new ArrayList<>();
  42. hands.add(new ArrayList<>());
  43. hands.add(new ArrayList<>());
  44. hands.add(new ArrayList<>());
  45. for (int i = 0; i < 5; i++) {
  46. for (int j = 0; j < 3; j++) {
  47. hands.get(j).add(deck.remove(0));
  48. }
  49. }
  50. System.out.println("剩余的牌:");
  51. System.out.println(deck);
  52. System.out.println("A 手中的牌:");
  53. System.out.println(hands.get(0));
  54. System.out.println("B 手中的牌:");
  55. System.out.println(hands.get(1));
  56. System.out.println("C 手中的牌:");
  57. System.out.println(hands.get(2));
  58. }
  59. }

运行结果

  1. 刚买回来的牌:
  2. [[♠ 1], [♠ 2], [♠ 3], [♠ 4], [♠ 5], [♠ 6], [♠ 7], [♠ 8], [♠ 9], [♠ 10], [♠ 11], [♠ 12], [♠ 13], [♥ 1], [♥ 2], [♥ 3], [♥ 4], [♥ 5], [♥ 6], [♥ 7],
  3. [♥ 8], [♥ 9], [♥ 10], [♥ 11], [♥ 12], [♥ 13], [♣ 1], [♣ 2], [♣ 3], [♣ 4], [♣ 5], [♣ 6], [♣ 7], [♣ 8], [♣ 9], [♣ 10], [♣ 11], [♣ 12], [♣
  4. 13], [♦ 1], [♦ 2], [♦ 3], [♦ 4], [♦ 5], [♦ 6], [♦ 7], [♦ 8], [♦ 9], [♦ 10], [♦ 11], [♦ 12], [♦ 13]]
  5. 洗过的牌:
  6. [[♥ 11], [♥ 6], [♣ 13], [♣ 10], [♥ 13], [♠ 2], [♦ 1], [♥ 9], [♥ 12], [♦ 5], [♥ 8], [♠ 6], [♠ 3], [♥ 5], [♥ 1], [♦ 6], [♦ 13], [♣ 12], [♦ 12],
  7. [♣ 5], [♠ 4], [♣ 3], [♥ 7], [♦ 3], [♣ 2], [♠ 1], [♦ 2], [♥ 4], [♦ 8], [♠ 10], [♦ 11], [♥ 10], [♦ 7], [♣ 9], [♦ 4], [♣ 8], [♣ 7], [♠ 8], [♦ 9], [♠
  8. 12], [♠ 11], [♣ 11], [♦ 10], [♠ 5], [♠ 13], [♠ 9], [♠ 7], [♣ 6], [♣ 4], [♥ 2], [♣ 1], [♥ 3]]
  9. 剩余的牌:
  10. [[♦ 6], [♦ 13], [♣ 12], [♦ 12], [♣ 5], [♠ 4], [♣ 3], [♥ 7], [♦ 3], [♣ 2], [♠ 1], [♦ 2], [♥ 4], [♦ 8], [♠ 10], [♦ 11], [♥ 10], [♦ 7], [♣ 9], [♦
  11. 4], [♣ 8], [♣ 7], [♠ 8], [♦ 9], [♠ 12], [♠ 11], [♣ 11], [♦ 10], [♠ 5], [♠ 13], [♠ 9], [♠ 7], [♣ 6], [♣ 4], [♥ 2], [♣ 1], [♥ 3]]
  12. A 手中的牌:
  13. [[♥ 11], [♣ 10], [♦ 1], [♦ 5], [♠ 3]]
  14. B 手中的牌:
  15. [[♥ 6], [♥ 13], [♥ 9], [♥ 8], [♥ 5]]
  16. C 手中的牌:
  17. [[♣ 13], [♠ 2], [♥ 12], [♠ 6], [♥ 1]]
5.2杨辉三角
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/439793
推荐阅读
相关标签
  

闽ICP备14008679号