当前位置:   article > 正文

Java实现数据结构——顺序表_pta 顺序表的插入——java实现

pta 顺序表的插入——java实现

目录

一、前言

二、实现

2.1 增

2.2 删

2.3 查 

 2.4 改

 2.5 销毁顺序表

三、Arraylist

3.1 构造方法

 3.2 常用操作

3.3 ArrayList遍历

四、 ArrayList具体使用  

4.1 杨辉三角

4.2 简单洗牌算法


一、前言

笔者在以前的文章中实现过顺序表

本文在理论上不会有太详细的讲述

如有需要可以翻看笔者之前的文章

http://t.csdnimg.cn/G5TpF


Java 中已经封装好了顺序表的类

但在使用之前

先自己实现一遍 

二、实现

将顺序表作为一个类进行实现

  1. public class MyArrayList {
  2. private int[] array ;//以整形数组示例
  3. private static int defaultspace = 10;//默认数组大小
  4. private int usespace = 0;//顺序表有效数据个数
  5. // 构造方法
  6. public MyArrayList() {
  7. this.array = new int[defaultspace];//不指定大小就默认大小
  8. }
  9. public MyArrayList(int size) {
  10. this.array = new int[size] ;//用户自己指定大小
  11. }
  12. }

再给一个方法让用户可以知晓表中有效数据个数

  1. public int size(){
  2. return this.usespace;
  3. }

2.1 增

这里进行一个方法的重载

  1. public void add(int data){
  2. // 不指定位置就默认是数组尾插入数据
  3. }
  4. public void add(int data ,int pos){
  5. //指定位置就插入到指定位置

在进行数据插入时

需要判断顺序表中是否还有足够的空间

给一个方法

检查操作不需要用户来使用

那就用 private 来修饰

  1. private boolean IsFull() {
  2. // 检查顺序表空间是否还有剩余
  3. return usespace == this.array.length;
  4. }

如果顺序表空间没有剩余

就需要扩容这个顺序表

这里选择使用 Arrays 类中的 copyOf 方法

  1. public void add(int data) {
  2. // 不指定位置就默认是数组尾插入数据
  3. if (IsFull(array)) {
  4. this.array = Arrays.copyOf(array, array.length * 2);
  5. }
  6. array[usespace] = data;
  7. usespace++;

 将上述操作封装进一个方法 checkspace

  1. private void checkspace() {
  2. if (IsFull()) {
  3. array = Arrays.copyOf(array, array.length * 2);
  4. }
  5. }
  1. public void add(int data) {
  2. // 不指定位置就默认是数组尾插入数据
  3. checkspace();
  4. this.array[usespace++] = data;
  5. }


而在指定位置的 add 方法中

 则是需要检查插入位置是否合法

这个下标的合法区间是 0~顺序表有效数据个数

那么不止在增删查改中都会有操作涉及到检查要进行操作的位置是否合法

不妨将操作位置不合法作为异常处理

自定义一个异常类

  1. public class Pos_IllegalityException extends RuntimeException{
  2. public Pos_IllegalityException(String message) {
  3. super(message);
  4. }
  5. }

检查操作不需要用户来使用

那就用 private 来修饰

  1. private void checkPos(int pos) throws Pos_IllegalityException {
  2. //检查插入位置是否合法
  3. if(pos < 0 || pos > usespace){
  4. throw new Pos_IllegalityException("输入的下标不合法:"+pos);
  5. }
  6. }

指定位置插入数据后

需要将原 pos及其以后得数据向后移动

  1. public void add(int data, int pos) {
  2. //指定位置就插入到指定位置
  3. try {
  4. checkPos_add(pos);
  5. } catch (Pos_IllegalityException e) {
  6. e.printStackTrace();
  7. }
  8. checkspace();
  9. for (int i = usespace; i >= pos; i--) {
  10. this.array[i + 1] = this.array[i];
  11. }
  12. this.array[pos] = data;
  13. this.usespace++;
  14. }

在实现一个打印方法

便于测试

  1. public void print() {
  2. for (int i = 0; i < usespace; i++) {
  3. System.out.println(array[i]);
  4. }
  5. }

测试

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(1);
  4. arr1.add(2,0);
  5. arr1.add(3,1);
  6. arr1.add(4);
  7. arr1.add(5);
  8. arr1.print();
  9. }
  10. }


测试是否能捕捉到异常

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(1);
  4. arr1.add(2,0);
  5. arr1.add(3,10);
  6. arr1.add(4);
  7. arr1.add(5);
  8. arr1.print();
  9. }

 

 符合预期

2.2 删

在进行删除操作的时候

这个顺序表肯定不能为空

就要先判断

  1. private boolean IsEmpty() {
  2. return this.usespace == 0;
  3. }
  1. public void remove(int pos){
  2. }

在进行指定位置删除时,同样需要判断进行操作的位置是否合法

删除操作中

pos 合法范围是[0,usespace)

  1. private void chechPos_remove(int pos) throws Pos_IllegalityException {
  2. //检查删除位置是否合法
  3. if (pos < 0 || pos >= this.usespace) {
  4. throw new Pos_IllegalityException("输入的下标不合法:" + pos);
  5. }
  6. }

删除 pos 位置的数据就是将 pos 位置后的数据向前移动一位

pos + 1 位置开始向前覆盖

  1. public void remove(int pos) {
  2. //删除指定位置的数据
  3. if (IsEmpty()) {
  4. System.out.println("当前没有可以删除的数据");
  5. }
  6. try {
  7. chechPos_remove(pos);
  8. } catch (Pos_IllegalityException e) {
  9. e.printStackTrace();
  10. }
  11. for (int i = pos; i < this.usespace - 1; i++) {
  12. this.array[i] = this.array[i + 1];
  13. }
  14. this.usespace--;
  15. }

测试

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(1);
  4. arr1.add(2);
  5. arr1.add(3);
  6. arr1.add(4);
  7. arr1.add(5);
  8. arr1.print();
  9. System.out.println("===========================");
  10. arr1.remove(0);
  11. arr1.remove(arr1.size() - 1);
  12. arr1.print();
  13. }


测试是否能捕捉异常

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(1);
  4. arr1.add(2);
  5. arr1.add(3);
  6. arr1.add(4);
  7. arr1.add(5);
  8. arr1.print();
  9. System.out.println("===========================");
  10. arr1.remove(0);
  11. arr1.remove(arr1.size() );
  12. arr1.print();
  13. }

符合预期

2.3 查 

用两个方法

一个叫 indexOf 

  public int indexOf(int data)

找到对应数据返回对应下标

找不到返回 -1

一个叫 get

public int get(int pos)

查找对应下标的数据


先说 indexOf

同样的

在查找时

也需要判断顺序表中是否有数据

  1. public int indexOf(int data) {
  2. if (IsEmpty()) {
  3. }
  4. return -1;
  5. }

为空或者表中没这个数据都返回-1

找到了就返回对应的下标

  1. public int indexOf(int data) {
  2. // 查找数据对应的下标
  3. if (IsEmpty()) {
  4. return -1;
  5. }
  6. for (int i = 0; i < this.usespace; i++) {
  7. if (this.array[i] == data) {
  8. return i;
  9. }
  10. }
  11. return -1;
  12. }


现在说 get

  1. public int get(int pos)throws {
  2. // 查找对应下标的数据
  3. if (IsEmpty()) {
  4. }
  5. }

那么在这里遇到了一个小问题

在这个顺序表为空的情况下

返回值该是什么呢

似乎任意一个整数都不太适合进行返回

那么干脆将顺序表为空作为一种异常处理

  1. public class MyArrayListEmptyException extends RuntimeException{
  2. public MyArrayListEmptyException(String message) {
  3. super(message);
  4. }
  5. }

再将前文中删操作时也应用这个异常

  1. public void remove(int pos) throws MyArrayListEmptyException {
  2. //删除指定位置的数据
  3. if (IsEmpty()) {
  4. throw new MyArrayListEmptyException("当前顺序表为空!");
  5. }
  6. try {
  7. chechPos_remove(pos);
  8. } catch (Pos_IllegalityException e) {
  9. e.printStackTrace();
  10. }
  11. for (int i = pos; i < this.usespace - 1; i++) {
  12. this.array[i] = this.array[i + 1];
  13. }
  14. this.usespace--;
  15. }

然后完成 get 的逻辑

同样的

需要检查传入下标的合法性

这里传入下标的合法性与删除操作的合法范围相同

那么就可以调用 chechPos_remove 这个方法

为了方便就改个名

  1. private void chechPos_remove_and_get(int pos) throws Pos_IllegalityException {
  2. //检查删除位置是否合法
  3. if (pos < 0 || pos >= this.usespace) {
  4. throw new Pos_IllegalityException("输入的下标不合法:" + pos);
  5. }
  6. }
  1. public int get(int pos) throws MyArrayListEmptyException {
  2. // 查找对应下标的数据
  3. chechPos_remove_and_get(pos);
  4. if (IsEmpty()) {
  5. throw new MyArrayListEmptyException("当前顺序表为空");
  6. }
  7. return this.array[pos];
  8. }

测试

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(99);
  4. arr1.add(2);
  5. arr1.add(3);
  6. System.out.println(arr1.indexOf(3));
  7. System.out.println(arr1.indexOf(4));
  8. System.out.println(arr1.get(0));
  9. }

这里看起来好像没问题

需要注意的是

如果是顺序表中所存数据是引用数据类型

那么

就不能使用 == 号判断

需要重写 equals 方法

 2.4 改

通过一个 set 方法来实现

  1. public void set(int data ,int pos){
  2. }

类似的

顺序表不能为空

判断 pos 是否合法

合法区间也是[0,usespace)

那再改个名

  1. private void checkPos_remove_get_set(int pos) throws Pos_IllegalityException {
  2. //检查删除位置是否合法
  3. if (pos < 0 || pos >= this.usespace) {
  4. throw new Pos_IllegalityException("输入的下标不合法:" + pos);
  5. }
  6. }

完成 set 的实现

  1. public void set(int data, int pos) throws MyArrayListEmptyException{
  2. //修改表中数据
  3. if(IsEmpty()){
  4. throw new MyArrayListEmptyException("当前顺序表为空");
  5. }
  6. checkPos_remove_get_set(pos);
  7. this.array[pos] = data;
  8. }

测试

  1. public static void main(String[] args) {
  2. MyArrayList arr1 = new MyArrayList();
  3. arr1.add(99);
  4. arr1.add(2);
  5. arr1.add(3);
  6. arr1.set(199,0);
  7. arr1.set(299,1);
  8. arr1.print();
  9. }

 2.5 销毁顺序表

顺序表在使用完成之后需要进行销毁

如果顺序表存的是基本数据类型

可以直接让 usespace = 0

  1. public void clear(){
  2. this.usespace = 0;
  3. }

但是如果是引用数据类型

采用这种方法会造成内存泄漏

JVM 中的自动回收算法有一个要求便是没引用这个数据

而这里虽然将 usespacez 置为0了

但数组中的对象仍然是存储在内存当中的

0下标确实还在引用这个对象

那么最粗暴的方法

就是直接将数组置空

  1. public void clear(){
  2. this.array = null;
  3. }

平和一点就是写一个循环

让每一项都置空

  1. public void clear(){
  2. for (int i = 0; i <this. usespace; i++) {
  3. this.array[i] = null;
  4. }
  5. }

那为什么基本数据类型不需要回收呢

比如这里的 int

就算不主动向表中插入数据

表中对应下标位置仍会有默认的 0

到这里

自己实现的一个简单顺序表就完成了

下面来看看 Java 中实现的 Arraylist

三、Arraylist

接下来来看一下 Java 中已经封装好的 Arraylist

这里只展示部分方法


3.1 构造方法

 来看看提供的构造方法


其中这个构造方法是由使用者指定顺序表大小

指定空间大小不合法就抛出一个异常


现在来看看这个无参构造方法 

可以看到的是

如果调用无参构造方法

并没有给数组分配内存空间

  1. public static void main(String[] args) {
  2. ArrayList arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. for (int i = 0; i < arrayList.size(); i++) {
  7. System.out.println(arrayList.get(i));
  8. }
  9. }

 

但是可以看到的是

往这个表中插入数据

还是可以成功插入

这时候就去看看方法 add 中是怎么执行的

 就是通过上述步骤

elementData 指定了一片内存空间

能够完成 add 操作


 

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList1 = new ArrayList<>();
  3. ArrayList<Number> arrayList2 = new ArrayList<>(arrayList1);
  4. }

 

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList1 = new ArrayList<>();
  3. ArrayList<Number> arrayList2 = new ArrayList<>(arrayList1);
  4. LinkedList<Number> linkedList = new LinkedList<>(arrayList1);
  5. Vector<Number> vector = new Vector<>(arrayList1);
  6. }

 

都是可以的

而不满足上述条件

  1. public static void main(String[] args) {
  2. ArrayList<String> arrayList1 = new ArrayList<>();
  3. ArrayList<Number> arrayList2 = new ArrayList<>(arrayList1);
  4. }

 

 3.2 常用操作

方法作用
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 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
…………

这里主要说说重载的 remove 方法

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. arrayList.add(4);
  7. arrayList.add(5);
  8. for (int i = 0; i < arrayList.size(); i++) {
  9. System.out.print(arrayList.get(i)+" ");
  10. }
  11. arrayList.remove(3);
  12. System.out.println();
  13. for (int i = 0; i < arrayList.size(); i++) {
  14. System.out.print(arrayList.get(i)+" ");
  15. }
  16. }

如果只传一个整形数字

删除的是对应下标的值 

如果想要具体删除某一个数据

那就要 new 一个对象

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. arrayList.add(4);
  7. arrayList.add(5);
  8. for (int i = 0; i < arrayList.size(); i++) {
  9. System.out.print(arrayList.get(i)+" ");
  10. }
  11. arrayList.remove(new Integer(3));
  12. System.out.println();
  13. for (int i = 0; i < arrayList.size(); i++) {
  14. System.out.print(arrayList.get(i)+" ");
  15. }
  16. }


以及 subList 方法

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. arrayList.add(4);
  7. arrayList.add(5);
  8. List<Integer> list = arrayList.subList(0,3);
  9. for (int i = 0; i < list.size(); i++) {
  10. System.out.print(list.get(i)+" ");
  11. }
  12. arrayList.set(0,99);
  13. System.out.println();
  14. for (int i = 0; i < list.size(); i++) {
  15. System.out.print(list.get(i)+" ");
  16. }
  17. }

截取后并不是产生新的对象

而是将截取的地址返回

所以在修改 arraylist 的值后

list 也会被修改

3.3 ArrayList遍历

ArrayList 可以使用三方方式遍历: for循环+ 下标 foreach 使用迭代器
for循环+ 下标在前文已经使用,这里就不再赘述
  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. arrayList.add(4);
  7. arrayList.add(5);
  8. for (Integer integer:arrayList){
  9. System.out.println(integer);
  10. }
  11. }


迭代器

使用方法

  1. public static void main(String[] args) {
  2. ArrayList<Integer> arrayList = new ArrayList<>();
  3. arrayList.add(1);
  4. arrayList.add(2);
  5. arrayList.add(3);
  6. arrayList.add(4);
  7. arrayList.add(5);
  8. Iterator<Integer> integerIterator = arrayList.iterator();
  9. while (integerIterator.hasNext()){
  10. System.out.println(integerIterator.next());
  11. }
  12. }

 

四、 ArrayList具体使用  

4.1 杨辉三角

题目来源

https://leetcode.cn/problems/pascals-triangle/description/


 这段代码表示

指定 对象 list 中存放的类型是 List<Integer>

  1. public static void main(String[] args) {
  2. List<List<Integer>> list = new ArrayList<>();
  3. ArrayList<Integer> arrayList = new ArrayList<>();
  4. ArrayList<Integer> arrayList2 = new ArrayList<>();
  5. list.add(arrayList);
  6. list.add(arrayList2);
  7. System.out.println();
  8. }

打个断点观察一下

可以看到其中存放的确实是 ArrayList 类型的对象


在本题中可以将整个杨辉三角看成是一个 List< List<Integer>> 对象

每一行就是单独的一个 Arraylist 对象 

就可以将 numRows Arraylist 对象增加到 List< List<Integer>> 对象中

完成这个杨辉三角


每一个 Arraylist 对象首元素和尾元素都是 1

就只需要给 (0,Arraylist 对象.length()) 下标处进行计算赋值

  1. public List<List<Integer>> generate(int numRows) {
  2. List<List<Integer>> list = new ArrayList<>();
  3. // 第一行只有一个元素 1
  4. List<Integer> firstrow = new ArrayList<>();
  5. firstrow.add(1);
  6. list.add(firstrow);//插入list
  7. for (int i = 1; i < numRows; i++) {
  8. List<Integer> currow = new ArrayList<>();//当前行
  9. currow.add(1);//当前行的首元素
  10. for (int j = 1; j < i; j++) {
  11. // 只进行(0,尾元素下标)之间的值赋值
  12. }
  13. currow.add(1);//尾元素赋值
  14. list.add(currow);//插入list
  15. }
  16. return list;
  17. }

而处于这个范围内的值等于

上一行同一列的值+上一行前一列的值

而对于当前代码来说

以第三行为例

list 中的第二个存储的对象

通过 get 方法将获取

  1. public List<List<Integer>> generate(int numRows) {
  2. List<List<Integer>> list = new ArrayList<>();
  3. // 第一行只有一个元素 1
  4. List<Integer> firstrow = new ArrayList<>();
  5. firstrow.add(1);
  6. list.add(firstrow);//插入list
  7. for (int i = 1; i < numRows; i++) {
  8. List<Integer> currow = new ArrayList<>();//当前行
  9. currow.add(1);//当前行的首元素
  10. for (int j = 1; j < i; j++) {
  11. // 只进行(0,尾元素下标)之间的值赋值
  12. List<Integer> lastrow = list.get(i - 1);//上一行
  13. int num = lastrow.get(j) + lastrow.get(j - 1);
  14. currow.add(num);
  15. }
  16. currow.add(1);//尾元素赋值
  17. list.add(currow);//插入list
  18. }
  19. return list;
  20. }

现在来提交一下

可以看到是可行的

4.2 简单洗牌算法

假设有三人正在玩扑克牌

设计一个洗牌算法

这里不计入大小王

总共有五十二张牌

花色有四种

♠(黑桃)、♥(红桃)、♦(方块)、♣(梅花)

每种花色各有13张

J Q K A 用数字 11,12,13,1代替

大概逻辑如下


可以把每一张牌看成是一个对象

那就需要一个牌类

  1. public class Card {
  2. private String color;//花色 ♠(黑桃)、♥(红桃)、♦(方块)、♣(梅花)
  3. private int point;//点数 1,2,3,4,5,6,7,8,9,10,11,12,13
  4. public Card(){
  5. }
  6. public Card(String color, int point) {
  7. this.color = color;
  8. this.point = point;
  9. }
  10. public void setColor(String color) {
  11. this.color = color;
  12. }
  13. public void setPoint(int point) {
  14. this.point = point;
  15. }
  16. @Override
  17. public String toString() {
  18. return "[" +
  19. color + '\''
  20. + point +
  21. "]";
  22. }
  23. }

那么 Card 类实例化出来的 52 个对象放到一个牌组 CardList

  1. public class CardList {
  2. //牌组
  3. public static List<Card> BuyCard(){
  4. List<Card> cardList = new ArrayList<>();
  5. return cardList;
  6. }
  7. }

再创建一个 Colors 类表示花色

Points 类表示点数

  1. public class Colors {
  2. //花色
  3. private static String[] colors = {"♠","♥","♦","♣"};
  4. public static String getColors(int index) {
  5. return colors[index];
  6. }
  7. public static int size(){
  8. return colors.length;
  9. }
  10. }
  1. public class Points {
  2. //点数
  3. private static int[] points = {1,2,3,4,5,6,7,8,9,10,11,12,13};
  4. public static int getPoints(int index) {
  5. return points[index];
  6. }
  7. public static int size(){
  8. return points.length;
  9. }
  10. }

通过这个类的静态方法返回一个 List<Card> 类对象

  1. public static List<Card> BuyCard(){
  2. List<Card> cardList = new ArrayList<>();
  3. for (int i = 0; i < Colors.size(); i++) {
  4. for (int j = 0; j < Points.size(); j++) {
  5. Card card = new Card(Colors.getColors(i),Points.getPoints(j));
  6. cardList.add(card);
  7. }
  8. }
  9. return cardList;
  10. }

在通过循环给每张牌进行 colorpoint 的赋值

  1. public static List<Card> BuyCard(){
  2. List<Card> cardList = new ArrayList<>();
  3. for (int i = 0; i < Colors.size(); i++) {
  4. for (int j = 0; j < Points.size(); j++) {
  5. Card card = new Card(Colors.getColors(i),Points.getPoints(j));
  6. cardList.add(card);
  7. }
  8. }
  9. return cardList;
  10. }

再将牌放入数组中

打印出来看看

  1. public static void main(String[] args) {
  2. List<Card> cardList = CardList.BuyCard();
  3. System.out.println(cardList);
  4. }

 (仅展示部分)

那么生成一副牌的逻辑就完成了


现在要洗乱这副牌

其实就是交换 cardlist 中存放的牌的位置

即两个下标的数据互换

而要随机洗乱就要生成随机数

可以使用 Random

  1. Random random = new Random();
  2. random.nextInt();

random.nextInt() 传入一个整形 n 可以限制只生成 0~n 之间的整数

那么可以遍历 cardlist 

将遍历过程中的下标作为限制传入

这里选择从尾部开始遍历

  1. private static void shuffle(List<Card> cardList) {
  2. Random random = new Random();
  3. for (int i = cardList.size() - 1; i > 0; i--) {
  4. int index = random.nextInt(i);
  5. }
  6. }

然后需要有一个交换的操作

可以通过 List 中的 set 方法

将交换的操作封装成一个方法

  1. private static void swap(List<Card> cardList, int index1, int index2) {
  2. Card tmp = new Card();
  3. tmp = cardList.get(index1);
  4. cardList.set(index1, cardList.get(index2));
  5. cardList.set(index2, tmp);
  6. }

放到生成牌的方法中 

  1. public static List<Card> BuyCard() {
  2. List<Card> cardList = new ArrayList<>();
  3. for (int i = 0; i < Colors.size(); i++) {
  4. for (int j = 0; j < Points.size(); j++) {
  5. Card card = new Card(Colors.getColors(i), Points.getPoints(j));
  6. cardList.add(card);
  7. }
  8. }
  9. shuffle(cardList);
  10. return cardList;
  11. }

测试一下看下行不行

  1. public static void main(String[] args) {
  2. List<Card> cardList = CardList.BuyCard();
  3. System.out.println(cardList);
  4. }

(仅展示部分)

可以看到顺序确实是被洗乱了


发给三个人,每人一开始有五张

可以把玩家看成是一个专门存放 List<Card> 类对象的 List

cardlist 中摸牌就是 add

  1. public static void main(String[] args) {
  2. List<Card> cardList = CardList.BuyCard();
  3. List<List<Card>> player= new ArrayList<>();//人
  4. for (int i = 0; i < 3 ; i++) {
  5. //i表示人
  6. List<Card> list = new ArrayList<>();
  7. for (int j = i * 5; j < i * 5 + 5; j++) {
  8. list.add(cardList.get(j));
  9. }
  10. player.add(list);
  11. System.out.println(player.get(i));
  12. }
  13. }

感谢观看

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

闽ICP备14008679号