Merge pull request #867 from shellhub/master

make code less
This commit is contained in:
Yang Libin
2019-09-28 09:58:40 +08:00
committed by GitHub

View File

@ -42,18 +42,15 @@ class PriorityQueue {
public void insert(int value) { public void insert(int value) {
if (isFull()) { if (isFull()) {
throw new RuntimeException("Queue is full"); throw new RuntimeException("Queue is full");
}
if (nItems == 0) {
queueArray[0] = value;
} else { } else {
int j = nItems; int j = nItems - 1; // index of last element
while (j > 0 && queueArray[j - 1] > value) { while (j >= 0 && queueArray[j] > value) {
queueArray[j] = queueArray[j - 1]; // Shifts every element up to make room for insertion queueArray[j + 1] = queueArray[j]; // Shifts every element up to make room for insertion
j--; j--;
} }
queueArray[j] = value; // Once the correct position is found the value is inserted queueArray[j + 1] = value; // Once the correct position is found the value is inserted
} nItems++;
nItems++; }
} }
/** /**