У овом примеру научићемо да имплементирамо структуру података о реду у Јави.
Да бисте разумели овај пример, требало би да имате знање о следећим темама програмирања Јава:
- Јава Куеуе Интерфаце
- Јава Генерицс
Пример 1: Јава програм за примену Стацка
public class Queue ( int SIZE = 5; int items() = new int(SIZE); int front, rear; Queue() ( front = -1; rear = -1; ) // check if the queue is full boolean isFull() ( if (front == 0 && rear == SIZE - 1) ( return true; ) return false; ) // check if the queue is empty boolean isEmpty() ( if (front == -1) return true; else return false; ) // insert elements to the queue void enQueue(int element) ( // if queue is full if (isFull()) ( System.out.println("Queue is full"); ) else ( if (front == -1) ( // mark front denote first element of queue front = 0; ) rear++; // insert element at the rear items(rear) = element; System.out.println("Insert " + element); ) ) // delete element from the queue int deQueue() ( int element; // if queue is empty if (isEmpty()) ( System.out.println("Queue is empty"); return (-1); ) else ( // remove element from the front of queue element = items(front); // if the queue has only one element if (front>= rear) ( front = -1; rear = -1; ) else ( // mark next element as the front front++; ) System.out.println( element + " Deleted"); return (element); ) ) // display element of the queue void display() ( int i; if (isEmpty()) ( System.out.println("Empty Queue"); ) else ( // display the front of the queue System.out.println("Front index-> " + front); // display element of the queue System.out.println("Items -> "); for (i = front; i " + rear); ) ) public static void main(String() args) ( // create an object of Queue class Queue q = new Queue(); // try to delete element from the queue // currently queue is empty // so deletion is not possible q.deQueue(); // insert elements to the queue for(int i = 1; i < 6; i ++) ( q.enQueue(i); ) // 6th element can't be added to queue because queue is full q.enQueue(6); q.display(); // deQueue removes element entered first i.e. 1 q.deQueue(); // Now we have just 4 elements q.display(); ) )
Оутпут
Ред је празан Уметак 1 Уметак 2 Уметак 3 Уметак 4 Уметак 5 Ред је пун Предњи индекс-> 0 предмета -> 1 2 3 4 5 Задњи индекс-> 4 1 Избрисан предњи индекс-> 1 предмета -> 2 3 4 5 Задњи индекс -> 4
У горњем примеру применили смо структуру података о реду у Јави.
Да бисте сазнали како се ради о реду, посетите структуру података о реду.
Пример 2: Имплементирајте стек помоћу интерфејса реда чекања
Јава пружа уграђени Queue
интерфејс који се може користити за примену реда.
import java.util.Queue; import java.util.LinkedList; class Main ( public static void main(String() args) ( // Creating Queue using the LinkedList class Queue numbers = new LinkedList(); // enqueue // insert element at the rear of the queue numbers.offer(1); numbers.offer(2); numbers.offer(3); System.out.println("Queue: " + numbers); // dequeue // delete element from the front of the queue int removedNumber = numbers.poll(); System.out.println("Removed Element: " + removedNumber); System.out.println("Queue after deletion: " + numbers); ) )
Оутпут
Ред: (1, 2, 3) Уклоњени елемент: 1 ред након брисања: (2, 3)
У горњем примеру, користили смо Queue
интерфејс за примену реда у Јави. Овде смо користили LinkedList
класу која имплементира Queue
интерфејс.
- нумберс.оффер () - уметање елемената на задњем делу реда
- нумберс.полл () - уклоните елемент са чела реда
Приметите, користили смо угаоне заграде приликом креирања реда. Представља да је ред генеричког типа.
Такође можемо користити и друге интерфејсе и класе уместо Queue
и LinkedList
. На пример,
- Декуе Интерфаце
- Класа АрраиДекуе
- Класа ПриоритиКуеуе