순환 대기 열의 자바 구현
7221 단어 데이터 구조
import java.util.Arrays;
public class LoopQueue {
private int DEFAULT_SIZE = 10;
// 。
private int capacity;
//
private Object[] elementData;
//
private int front = 0;
private int rear = 0;
//
public LoopQueue() {
capacity = DEFAULT_SIZE;
elementData = new Object[capacity];
}
//
public LoopQueue(T element) {
this();
elementData[0] = element;
rear++;
}
public LoopQueue(T element, int initSize) {
this.capacity = initSize;
elementData = new Object[capacity];
elementData[0] = element;
rear++;
}
//
public int length() {
if (empty()) {
return 0;
}
return rear > front ? rear - front : capacity - (front - rear);
}
//
public void add(T element) {
if (rear == front && elementData[front] != null) {
throw new IndexOutOfBoundsException(" ");
}
elementData[rear++] = element;
// rear ,
rear = rear == capacity ? 0 : rear;
}
//
public T remove() {
if (empty()) {
throw new IndexOutOfBoundsException(" ");
}
// rear
T oldValue = (T) elementData[front];
// rear
elementData[front++] = null;
// front ,
front = front == capacity ? 0 : front;
return oldValue;
}
// ,
public T element() {
if (empty()) {
throw new IndexOutOfBoundsException(" ");
}
return (T) elementData[front];
}
//
public boolean empty() {
// rear==front rear null
return rear == front && elementData[rear] == null;
}
//
public void clear() {
// null
Arrays.fill(elementData, null);
front = 0;
rear = 0;
}
public String toString() {
if (empty()) {
return "[]";
} else {
// front < rear, front rear
if (front < rear) {
StringBuilder sb = new StringBuilder("[");
for (int i = front; i < rear; i++) {
sb.append(elementData[i].toString() + ", ");
}
int len = sb.length();
return sb.delete(len - 2, len).append("]").toString();
}
// front >= rear, front->capacity 、0->front
else {
StringBuilder sb = new StringBuilder("[");
for (int i = front; i < capacity; i++) {
sb.append(elementData[i].toString() + ", ");
}
for (int i = 0; i < rear; i++) {
sb.append(elementData[i].toString() + ", ");
}
int len = sb.length();
return sb.delete(len - 2, len).append("]").toString();
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.