Institute of Computer Science
  1. Courses
  2. 2018/19 spring
  3. Object-Oriented Programming (Narva College) (LTAT.NR.003)
ET
Log in

Object-Oriented Programming (Narva College) 2018/19 spring

  • Home
  • Materials
  • Java Glossary
  • Source Example
  • Cheat sheet (S1-S6)
  • Grading
  • Links
Session 13

Queue

A Queue is an ordered data structure. Elements are appended to the end of a queue (add) and are removed (remove) from the beginning of a queue. Therefore, this data structure is also known as FIFO (first-in-first-out).

// cityToVisit of the Queue interface has functionality of the LinkedList
Queue<String> cityToVisit = new LinkedList<>();
cityToVisit.add("Tartu"); // adds the element to the end of the list
cityToVisit.add("Paide");
cityToVisit.add("Tallinn");
while (!cityToVisit.isEmpty()) {
  System.out.println(cityToVisit.remove()); // removes the first element of the list
}

Queues are used in graphs and in the program flow control (user inputs are stored in a queue and later they are executed in FIFO order).

Session 13
  • Institute of Computer Science
  • Faculty of Science and Technology
  • University of Tartu
In case of technical problems or questions write to:

Contact the course organizers with the organizational and course content questions.
The proprietary copyrights of educational materials belong to the University of Tartu. The use of educational materials is permitted for the purposes and under the conditions provided for in the copyright law for the free use of a work. When using educational materials, the user is obligated to give credit to the author of the educational materials.
The use of educational materials for other purposes is allowed only with the prior written consent of the University of Tartu.
Terms of use for the Courses environment