使用数组 + 奇数和偶数在 Java 中出队

Dequeues in Java using arrays + odd and even numbers

我在编程练习中遇到了一些问题,我应该在其中使用数组实现出队。

我已经得到了我需要的操作,但在实施之后你应该 运行 通过数字 1-20 并在出列的末尾插入偶数,奇数添加开头。

之后,您应该使用方法 removeFront 删除列表中的所有数字,并将它们打印在控制台上。

还有提示正确输出是:(19,17,15...,1,2,4,...,20).

我现在的问题是列表中缺少数字 1,而是打印出一个空值作为要删除的第一个项目。

public class Dequeues<E> {

private final int max;
private int head;
private int tail;
private E[] deque;
private int counter;

public Dequeues(int max) {
    this.max = max;
    deque = (E[]) new Object[max];
    this.head = 0;
    this.tail = 0;
    this.counter = 0;
}

public boolean isEmpty (){
    return (counter == 0);
}

public boolean isFull() {
    return(counter>= max);
}

public void addFront (E x){
    if(!isFull()) {
        if (head == 0) {
            head = deque.length-1;
            deque[head] = x;
        } else {
            deque[head--] = x;
        }
        counter++;
    }
    else throw new IndexOutOfBoundsException("Stack is full!");
}

public void addBack(E x){
    if(!isFull()) {
        if(tail == deque.length-1) {
            tail = 0;
            deque[tail] = x;
        } else {
            deque[tail++] = x;
        }
        counter++;
    }
    else throw new IndexOutOfBoundsException("Stack is full!");
}

public E removeFront(){
    if(!isEmpty()) {
        E ret = deque[head];
        deque[head++] = null;
        if(head >= deque.length) {
            head = 0;
        }
        counter--;
        return ret;
    }
    else throw new IndexOutOfBoundsException("Stack is empty");
}

public E removeBack(){
    if (!isEmpty()) { 
        E ret = deque[tail]; 
        deque[tail--] = null;
        if(tail < 0) {
            tail = deque.length-1;
        }
        counter--;
        return ret;
        }
    else throw new IndexOutOfBoundsException("Stack is empty");
}


public static void main (String [] args) {
Dequeues test = new Dequeues(20);
for (int i = 1; i <= test.deque.length; i++) {
    if(i % 2 == 0) {
        test.addBack(i);
    } else if(i % 2 == 1) {
        test.addFront(i);
    }
}

System.out.println("Use of removeFront and output of the values: ");
for (int i = 0; i < test.deque.length; i++) {       
    System.out.print(test.removeFront() + " ");
    }   
}}

输出如下:

removeFront 的使用和值的输出: 空 19 17 15 13 11 9 7 5 3 2 4 6 8 10 12 14 16 18 20

你只是错误地使用了 -- 运算符。 addFront 方法的正确实现应该是:

public void addFront (E x){
    if(!isFull()) {
        if (head == 0) {
            head = deque.length-1;
            deque[head] = x;
        } else {
            deque[--head] = x;
        }
        counter++;
    }
    else throw new IndexOutOfBoundsException("Stack is full!");
}

所以,区别就在这里deque[--head] = x;

--head表示head值减一再使用

head--表示使用值head然后减少它的值

您的情况是:

  1. 头=deque.length-1;头 == 19

  2. head != 0 然后转到 else 语句。 head 值 = 19。您使用 head-- 并再次获得 19 并将其递减 1,但必须使用 --head.