如何从数组中删除最后一个元素?

2022-09-01 23:58:25

现在我正在使用递归回溯,我的任务是找到迷宫中最长的路径,质量被呈现为被坐标覆盖的场,并且墙壁的坐标在文件中是疼痛的。我做了一个解析器来解析输入文件并构建墙壁,但是我也将此坐标存储在对象类型Menta的数组中,以检查是否可以在下一个字段上移动下一块“snake”,然后我已经创建了此方法,现在我已经明白了当我使用时,我需要一种方法从数组中删除最后一个坐标。回溯,我该怎么做?目标不是使用数组列表或仅使用数组的链接列表!谢谢!

public class Coordinate {
int xCoord;
int yCoord;

 Coordinate(int x,int y) {
     this.xCoord=x;
     this.yCoord=y;
 }

 public int getX() {
     return this.xCoord;
 }

 public int getY() {
     return this.yCoord;
 }
 public String toString() {
     return this.xCoord + "," + this.yCoord;

 }

 }

public class Row {
static final int MAX_NUMBER_OF_COORD=1000;

Coordinate[] coordArray;
int numberOfElements;


Row(){
    coordArray = new Coordinate[MAX_NUMBER_OF_COORD];
    numberOfElements=0;

   }


void add(Coordinate toAdd) {
    coordArray[numberOfElements]=toAdd;
    numberOfElements +=1;
}
boolean ifPossible(Coordinate c1){
    for(int i=0;i<numberOfElements;i++){

        if(coordArray[i].xCoord==c1.xCoord && coordArray[i].yCoord==c1.yCoord){
                return false;
            }
        }


    return true;
}

 }

答案 1

由于在Java中,数组是不可调整大小的,因此您必须将所有内容复制到一个新的,更短的数组中。

Arrays.copyOf(original, original.length-1)

答案 2

我知道这是一个非常古老的线程。尽管如此,批准的答案本身对我不起作用。这就是我解决它的方式。

创建一个类似如下的方法:

String[] sliceArray(String[] arrayToSlice, int startIndex, int endIndex) throws ArrayIndexOutOfBoundsException {
    if (startIndex < 0)
        throw new ArrayIndexOutOfBoundsException("Wrong startIndex = " + startIndex);
    if (endIndex >= arrayToSlice.length)
        throw new ArrayIndexOutOfBoundsException("Wrong endIndex = " + endIndex);

    if (startIndex > endIndex) { // Then swap them!
        int x = startIndex;
        startIndex = endIndex;
        endIndex = x;
    }

    ArrayList<String> newArr = new ArrayList<>();
    Collections.addAll(newArr, arrayToSlice);
    for (int i = 0; i < arrayToSlice.length; i++) {
        if (!(i >= startIndex && i <= endIndex)) // If not with in the start & end indices, remove the index
            newArr.remove(i);
    }
    return newArr.toArray(new String[newArr.size()]);
}

然后这样称呼它:

String lines[] = {"One", "Two", "Three", "Four", "Five"};
lines = sliceArray(lines, 0, 3);

这将导致:

"One", "Two", "Three", "Four"

现在,我可以以任何我想要的方式对阵列进行切片!

lines = sliceArray(lines, 2, 3);

这将导致:

"Three", "Four"