thread.main проблема с моей java очередью интерфейса, как ее решить? - PullRequest
0 голосов
/ 27 января 2020

Я работаю над своим домашним заданием, собираю код в очередь с поддержкой интерфейса, я написал свой код, но вывод вызвал проблему main.thread, если честно, я не смог найти проблему, однако я считаю, что проблема связана с вставка, в основном в размере приращения, я ценю некоторые советы

public class MyQueue implements IntQueue {

    private int[] heltal;
    private int size;

    public void enqueue(int tal) {
// Inserts the specified element into the end of this queue.
// increases the size after every insertion 
        if (size == 0) {
            size++;
            heltal[0] = tal;
            int[] newArr = new int[heltal.length * 2];
            for (int i = 0; i < heltal.length; i++) {
                newArr[i] = heltal[i];
            }
            heltal = newArr;
        }
        return;
    }

    public int dequeue() throws NoSuchElementException {
// Returns the head of this queue and removes it. 
    // Throws an exception if this queue is empty.
        if (empty())
            throw new NoSuchElementException("The queue is empty");

        int NewValue = heltal[0];

        for (int i = 1; i < size; i++) {
            heltal[i - 1] = heltal[i];
        }
        heltal[size - 1] = 0;
        size--;
        return NewValue;
    }

    @Override
    public int peek() throws NoSuchElementException {
// Retrieves, but does not remove, the head of this queue.
    // Throws an exception if this queue is empty.
        if (empty())
            throw new NoSuchElementException("The queue is empty");
        return heltal[0];

    }

    @Override
    public boolean empty() {
// Checks if this queue is empty.
        return size == 0;

    }
}

1 Ответ

0 голосов
/ 27 января 2020

Инициализируйте ваш массив, как показано ниже

private int[] heltal = new int[100];

и посмотрите, работает ли он

...