Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 710 Bytes

File metadata and controls

11 lines (8 loc) · 710 Bytes

This folder contains different data structures I am learning in my Data Structure class at Boston University. The book used to practice the code is Data Structures & Other Objects Using Java by Michael Main

  1. Queues:

· A Queue is a data structure were data in inserted at the end and removed from the other end. As the items are removed in order they arrived, the first to arrive is the first leaving the queue is called First-In First-Out (FIFO)

· It is very find Queues in our life, like any waiting line you can imagine for humans, the first arriving is the first leaving. \n· I created the class Queue.java; however, it is not necessary because java.util already has a class Queue.