当前位置:   article > 正文

【数据结构】ArrayList和顺序表_顺序表求表长arraylist

顺序表求表长arraylist

目录

1.线性表

2.顺序表

3.ArrayList

源码的分析 

ArrayList的构造

ArrayList的常见操作 

 ArrayList遍历

ArrayList的扩容机制 

4.杨辉三角

5.去掉第一个字符串当中与第二个字符串相同的内容

6.扑克牌


1.线性表

  线性表是最基本、最简单、也是最常用的一种数据结构。线性表(linear list)是一种数据结构,一个线性表是n个具有相同特性的数据元素的有限序列。

常见的线性表:顺序表、链表、栈、队列、字符串...

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

线性表中数据元素之间的关系是一对一的关系,即除了第一个和最后一个数据元素之外,其它数据元素都是首尾相接的(注意,这句话只适用大部分线性表,而不是全部)

​ 

2.顺序表

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

要实现的功能

  1. public class SeqList {
  2. // 打印顺序表
  3. public void display() { }
  4. // 新增元素,默认在数组最后新增
  5. public void add(int data) { }
  6. // 在 pos 位置新增元素
  7. public void add(int pos, int data) { }
  8. // 判定是否包含某个元素
  9. public boolean contains(int toFind) { return true; }
  10. // 查找某个元素对应的位置
  11. public int indexOf(int toFind) { return -1; }
  12. // 获取 pos 位置的元素
  13. public int get(int pos) { return -1; }
  14. // 给 pos 位置的元素设为 value
  15. public void set(int pos, int value) { }
  16. //删除第一次出现的关键字key
  17. public void remove(int toRemove) { }
  18. // 获取顺序表长度
  19. public int size() { return 0; }
  20. // 清空顺序表
  21. public void clear() { }
  22. }

具体代码实现

 

MyArrayList 

  1. package sqlist;
  2. import java.util.Arrays;
  3. public class MyArrayList {
  4. public int[] elem;
  5. public int usedSize;
  6. private static final int DEFAULT_SIZE = 4 ;
  7. public MyArrayList(){
  8. this.elem = new int[DEFAULT_SIZE];
  9. }
  10. /**
  11. * 打印顺序表
  12. * 根据usedSize判断即可
  13. */
  14. public void display() {
  15. for (int i = 0; i < usedSize ; i++) {
  16. System.out.print(elem[i]+" ");
  17. }
  18. System.out.println();
  19. }
  20. /**
  21. * 判断顺序表是否满了
  22. * @return 如果满了,返回true 没满,返回false
  23. */
  24. public boolean isFull(){
  25. return this.usedSize==this.elem.length;
  26. }
  27. // 新增元素,默认在数组最后新增
  28. public void add(int data) {
  29. //1.判断顺序表是否满了,如果满了就扩容为原来的两倍
  30. if(isFull()){
  31. this.elem = Arrays.copyOf(elem,2*elem.length);
  32. }
  33. //2.没满就进行插入
  34. this.elem[usedSize]=data;
  35. usedSize++;
  36. }
  37. /**
  38. * 判断pos位置是否合法
  39. * @param pos 想插入的位置
  40. * @return 合法返回true 不合法返回false
  41. */
  42. private boolean checkPosInAdd(int pos){
  43. if(pos<0 || pos>this.usedSize){
  44. System.out.println("pos位置不合法");
  45. return false;
  46. }
  47. return true;
  48. }
  49. // 在 pos 位置新增元素 (插入到指定位置)
  50. public void add(int pos, int data) {
  51. //1.判断pos位置的合法性
  52. if(!checkPosInAdd(pos)){
  53. throw new MyArrayListIndexOutOfException("添加方法的pos不合理");
  54. }
  55. //2.判断是否满了
  56. if(isFull()){
  57. this.elem = Arrays.copyOf(elem,2*elem.length);
  58. }
  59. //3.挪数据
  60. for (int i = this.usedSize-1; i >=pos ; i--) {
  61. this.elem[i+1]=this.elem[i];
  62. }
  63. //挪完了数据,插入
  64. this.elem[pos]=data;
  65. this.usedSize++;
  66. }
  67. // 判定是否包含某个元素
  68. public boolean contains(int toFind) {
  69. for (int i = 0; i < this.usedSize; i++) {
  70. if(this.elem[i] == toFind){
  71. return true;
  72. }
  73. }
  74. return false;
  75. }
  76. // 查找某个元素对应的位置
  77. public int indexOf(int toFind) {
  78. for (int i = 0; i < this.usedSize; i++) {
  79. if(this.elem[i]==toFind){
  80. return i;
  81. }
  82. }
  83. return -1;
  84. }
  85. private boolean checkPosInGet(int pos){
  86. if(pos<0 || pos>=this.usedSize){
  87. System.out.println("pos位置不合法");
  88. return false;
  89. }
  90. return true;
  91. }
  92. private boolean isEmpty() {
  93. return this.usedSize == 0;
  94. }
  95. // 获取 pos 位置的元素
  96. public int get(int pos){
  97. if(!checkPosInAdd(pos)){
  98. throw new MyArrayListIndexOutOfException("获取pos下标时,位置不合法");
  99. }
  100. if(isEmpty()){
  101. throw new MyArrayListEmptyException("获取元素的时候,顺序表为空");
  102. }
  103. return this.elem[pos];
  104. }
  105. // 给 pos 位置的元素设为 value
  106. public void set(int pos, int value) {
  107. //判断pos位置的合法性
  108. if(!checkPosInGet(pos)){
  109. throw new MyArrayListIndexOutOfException("更新pos下标的元素,位置不合法");
  110. }
  111. //如果合法,那么其实不用判断顺序表为空的状态了
  112. if(isEmpty()){
  113. throw new MyArrayListEmptyException("顺序表为空");
  114. }
  115. //其实顺序表为满的情况下也可以更新,也不必要判断顺序表是否满
  116. this.elem[pos] = value;
  117. }
  118. /**
  119. * 删除第一次出现的关键字key
  120. * @param key
  121. */
  122. public void remove(int key) {
  123. if(isEmpty()){
  124. throw new MyArrayListEmptyException("顺序表为空,不能删除!");
  125. }
  126. int index = indexOf(key);
  127. if(index == -1){
  128. System.out.println("不存在你要删除的数据");
  129. return ;
  130. }
  131. for (int i = index; i <this.usedSize-1 ; i++) {
  132. this.elem[i] = this.elem[i + 1];
  133. }
  134. //删除完成
  135. this.usedSize--;
  136. //this.elem[usedSize]=null; 如果是引用类型,这里需要置为空
  137. }
  138. // 获取顺序表长度
  139. public int size() {
  140. return this.usedSize;
  141. }
  142. // 清空顺序表
  143. public void clear(){
  144. this.usedSize = 0;
  145. /*
  146. 如果是引用数据类型得一个一个置为空 这样做才是最合适的
  147. for (int i = 0; i < this.usedSize; i++) {
  148. this.elem[i] = null;
  149. }
  150. */
  151. }
  152. }

MyArrayListEmptyException 

  1. package sqlist;
  2. public class MyArrayListEmptyException extends RuntimeException{
  3. public MyArrayListEmptyException(){
  4. }
  5. public MyArrayListEmptyException(String message){
  6. super(message);
  7. }
  8. }

MyArrayListIndexOutOfException

  1. package sqlist;
  2. public class MyArrayListIndexOutOfException extends RuntimeException{
  3. public MyArrayListIndexOutOfException() { }
  4. public MyArrayListIndexOutOfException(String message){
  5. super(message);
  6. }
  7. }

分析:

1.新增元素,默认在数组最后新增 

 

如果是满的,那我们就需要扩容

 

 我们是这样操作的,之后我们测试一下是否能达到我们的目的

2.在pos位置新增元素

​ 

那么我们的步骤就是

​ 

 我们是如何判断pos位置的合法性的呢?

我们怎么挪动数据并且插入数据的呢?

​ 

最后我们测试一下是否可以达到我们的目的 

​ 

​ 

3. 判断是否包含某个元素

​ 

4.删除某个元素

​ 

​ 

3.ArrayList

  刚刚的顺序表是由我们自己实现的,而在Java中有它自己的顺序表,即我们接下来要介绍的

ArrayList 

在集合框架中,ArrayList是一个普通的类,实现了List接口,具体框架图如下:
​ 

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

源码的分析 

​ 

问题:当调用不带参数的构造方法时,这个数组默认大小是多少?

      答案是0

第一个问题:既然数组的大小是0,那么是怎么Add元素的呢

我们得出结论:第一次调用 add 的时候,我们底层的数组才变成了10

第二个问题:扩容函数grow函数

ArrayList的构造

方法解释
ArrayList()无参构造
ArrayList(Collection<? extends 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);

注:我们要避免省略类型

  1. // 避免省略类型,否则:任意类型的元素都可以存放,使用时将会出现很大的问题
  2. List list4 = new ArrayList();
  3. list4.add("111");
  4. list4.add(100);

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)截取部分 list


 ArrayList遍历

ArrayList 可以使用三方方式遍历:for循环+下标、foreach、使用迭代器

  1. ArrayList<Integer> arrayList = new ArrayList<>();
  2. arrayList.add(1);
  3. arrayList.add(2);
  4. arrayList.add(3);
  5. arrayList.add(4);
  6. arrayList.add(5);
  7. // 使用下标+for遍历
  8. for (int i = 0; i < arrayList.size(); i++) {
  9. System.out.print(arrayList.get(i)+" ");
  10. }
  11. System.out.println();
  12. // 借助 foreach 遍历
  13. for (Integer x : arrayList) {
  14. System.out.print(x+" ");
  15. }
  16. System.out.println();
  17. System.out.println("==========================");
  18. //使用迭代器
  19. Iterator<Integer> it = arrayList.iterator();
  20. while(it.hasNext()){
  21. System.out.print(it.next()+" ");
  22. }

ArrayList的扩容机制 

  1. 检测是否真正需要扩容,如果是调用grow准备扩容
  2. 预估需要库容的大小,初步预估按照1.5倍大小扩容,如果用户所需大小超过预估1.5倍大小,则按照用户所需大小扩容,真正扩容之前检测是否能扩容成功,防止太大导致扩容失败
  3. 使用copyOf进行扩容

4.杨辉三角

力扣

  1. import java.util.ArrayList;
  2. import java.util.List;
  3. class Solution {
  4. public List<List<Integer>> generate(int numRows) {
  5. List<List<Integer>> ret = new ArrayList<>();
  6. List<Integer> one = new ArrayList<>();
  7. one.add(1);
  8. ret.add(one);
  9. //i 代表每一行
  10. for (int i = 1; i < numRows; i++) {
  11. List<Integer> curRow = new ArrayList<>();
  12. curRow.add(1);//这一行开始的 1
  13. //j 代表这一行的每个元素
  14. for (int j = 1; j < i ; j++) {
  15. //curRow[i][j] = 前一行[i-1][j] + 前一行[i-1][j-1]
  16. List<Integer> preRow = ret.get(i-1);//前一行
  17. int x = preRow.get(j) + preRow.get(j-1);
  18. curRow.add(x);
  19. }
  20. // j==i 这一行最后的 1
  21. curRow.add(1);
  22. ret.add(curRow);
  23. }
  24. return ret;
  25. }
  26. }

5.去掉第一个字符串当中与第二个字符串相同的内容

  1. import java.util.ArrayList;
  2. import java.util.List;
  3. public class TestDemo {
  4. public static List<Character> func(String s1,String s2){
  5. if( s1==null || s2==null){
  6. return null;
  7. }
  8. if( s1.length()==0 || s2.length()==0 ){
  9. return null;
  10. }
  11. List<Character> ret = new ArrayList<>();
  12. for (int i = 0; i < s1.length(); i++) {
  13. char ch = s1.charAt(i);
  14. if(!s2.contains(ch+"")){
  15. ret.add(ch);
  16. }
  17. }
  18. return ret;
  19. }
  20. public static void main(String[] args) {
  21. String s1 = "welcome to china";
  22. String s2 = "come";
  23. List<Character> ret = func(s1,s2);
  24. for (char ch : ret) {
  25. System.out.print(ch);
  26. }
  27. }
  28. }

 

6.扑克牌

  1. package demo1;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Random;
  5. class Card {
  6. private String suit;//花色
  7. private int rank;//数值
  8. public Card(String suit, int rank) {
  9. this.suit = suit;
  10. this.rank = rank;
  11. }
  12. public String getSuit() {
  13. return suit;
  14. }
  15. public void setSuit(String suit) {
  16. this.suit = suit;
  17. }
  18. public int getRank() {
  19. return rank;
  20. }
  21. public void setRank(int rank) {
  22. this.rank = rank;
  23. }
  24. @Override
  25. public String toString() {
  26. return "[ "+suit+" "+rank+"]";
  27. }
  28. }
  29. public class TestCard {
  30. public static final String[]suits={"♥","♠","♣","♦"};
  31. public static List<Card> buyCard(){
  32. List<Card> desk = new ArrayList<>();
  33. for (int i = 0; i < 4; i++) {
  34. for (int j = 1; j <= 13 ; j++) {
  35. String suit = suits[i];
  36. Card card = new Card(suit,j);
  37. desk.add(card);
  38. }
  39. }
  40. return desk;
  41. }
  42. /**
  43. *
  44. * @param cardList
  45. */
  46. public static void shuffle(List<Card> cardList) {
  47. for (int i = cardList.size()-1 ; i >0 ; i--) {
  48. Random random = new Random();
  49. int index = random.nextInt(i);
  50. swap(cardList,i,index);
  51. }
  52. }
  53. public static void swap(List<Card>cardList,int i,int j){
  54. Card tmp = cardList.get(i);
  55. cardList.set(i,cardList.get(j));
  56. cardList.set(j,tmp);
  57. }
  58. public static void main(String[] args) {
  59. List<Card> cardList = buyCard();
  60. System.out.println("买牌"+cardList);
  61. shuffle(cardList);
  62. System.out.println("洗牌"+cardList);
  63. List<Card> hand1 = new ArrayList<>();
  64. List<Card> hand2 = new ArrayList<>();
  65. List<Card> hand3 = new ArrayList<>();
  66. List<List<Card>> hands = new ArrayList<>();//相当于二维数组
  67. hands.add(hand1);
  68. hands.add(hand2);
  69. hands.add(hand3);
  70. // 三个人,每个人轮流抓 5 张牌
  71. for (int i = 0; i < 5; i++) {
  72. for (int j = 0; j < 3; j++) {
  73. //每次揭牌都去获取 cardList的 0下标的数据【删除】
  74. Card card = cardList.remove(0);
  75. List<Card> hand = hands.get(j);
  76. hand.add(i,card);
  77. }
  78. }
  79. System.out.println("第1个人的牌:"+hand1);
  80. System.out.println("第2个人的牌:"+hand2);
  81. System.out.println("第3个人的牌:"+hand3);
  82. System.out.println("剩余的牌"+cardList);
  83. }
  84. }

 

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

闽ICP备14008679号