亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java先進先出數據結構怎么實現

小億
235
2023-12-12 12:52:08
欄目: 編程語言

在Java中,可以使用以下幾種數據結構來實現先進先出(FIFO)的特性:

  1. 隊列(Queue):隊列是先進先出的線性數據結構,可以使用Java中的LinkedList類來實現。LinkedList類提供了常用的隊列操作方法,如add()、offer()、remove()、poll()等。
import java.util.LinkedList;
import java.util.Queue;

public class FIFOQueueExample {
    public static void main(String[] args) {
        Queue<String> queue = new LinkedList<>();

        // 入隊操作
        queue.add("A");
        queue.add("B");
        queue.offer("C");

        // 出隊操作
        String element = queue.remove(); // A
        System.out.println(element);

        String peekElement = queue.peek(); // B
        System.out.println(peekElement);
    }
}
  1. 棧(Stack):盡管棧是一種后進先出(LIFO)的數據結構,但是可以使用LinkedList類的push()和pop()方法模擬先進先出的行為。
import java.util.LinkedList;

public class FIFOStackExample {
    public static void main(String[] args) {
        LinkedList<String> stack = new LinkedList<>();

        // 入棧操作
        stack.push("A");
        stack.push("B");
        stack.push("C");

        // 出棧操作
        String element = stack.pop(); // C
        System.out.println(element);

        String peekElement = stack.peek(); // B
        System.out.println(peekElement);
    }
}
  1. 數組(Array):可以使用數組來實現先進先出的特性。使用一個指針來指示隊列的頭部,每次出隊操作后將指針向后移動一位。
public class FIFODynamicArray {
    private int[] array;
    private int head;
    private int tail;
    private int size;

    public FIFODynamicArray(int capacity) {
        array = new int[capacity];
        head = 0;
        tail = 0;
        size = 0;
    }

    public void enqueue(int element) {
        if (size == array.length) {
            throw new IllegalStateException("Queue is full");
        }
        
        array[tail] = element;
        tail = (tail + 1) % array.length;
        size++;
    }

    public int dequeue() {
        if (size == 0) {
            throw new IllegalStateException("Queue is empty");
        }
        
        int element = array[head];
        head = (head + 1) % array.length;
        size--;

        return element;
    }

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

0
抚远县| 鲁甸县| 凤凰县| 贵定县| 普安县| 渝中区| 开化县| 宽城| 揭西县| 襄汾县| 富宁县| 玛纳斯县| 尉氏县| 贺兰县| 阿拉善盟| 卢氏县| 阿坝县| 福泉市| 大新县| 长武县| 雅江县| 大渡口区| 揭东县| 全椒县| 获嘉县| 嘉定区| 唐海县| 碌曲县| 弥渡县| 抚州市| 星座| 乐至县| 新疆| 峨山| 花垣县| 怀来县| 洛宁县| 凤山市| 玉环县| 县级市| 积石山|