1 / 10

COP3804 - Intermediate java

COP3804 - Intermediate java. Data Structures. Data Structures. A data structure is a way of organizing a collection of data so that it can be manipulated effectively. A list, in particular, is a collection that stores its elements in a position-based sequence.

emilia
Download Presentation

COP3804 - Intermediate java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. COP3804 - Intermediate java Data Structures

  2. Data Structures • A data structure is a way of organizing a collection of data so that it can be manipulated effectively. • A list, in particular, is a collection that stores its elements in a position-based sequence. • The memory allocation for the list elements may be contiguous allocation or linked allocation. • ArrayList is an example of a data structure that uses contiguous allocation whereas LinkedList is an example of a data structure that uses linked allocation.

  3. Linked Lists • A linked list is a data structure that consists of a number of nodes; each node has an object (the data we are storing) and a reference to the next node in the list. • They allow for elements to be efficiently removed and added from the middle of the list since the rest of the elements in the list don’t need to be moved (as in arrays), only the neighboring node references need to be updated. • Visiting all the elements of a linked list in sequential order is efficient but accessing the object stored at an arbitrary location is not. Let’s say you only want to access the object stored at position 5, you would first need to iterate through the first 4 elements in the list.

  4. Linked Lists • In an application where a lot of elements need to be added or removed at any position in a list, a LinkedList would be a more efficient data structure to use than an ArrayList. • For applications where the main operation is accessing elements at a specific location, an Arraylist would perform better.

  5. Linked Lists • The Java library provides thejava.util.LinkedList class, which has methods to access the first and last elements in the list: • getFirst() and getLast() • It also provides methods to add and remove the first and last elements: • addFirst() • addLast() • removeFirst() • removeLast()

  6. Implementing Linked Lists • For assignment 4, you had to create your own implementation of a linked list class based on the one provided in the textbook. We called it StudentLinkedList. • The purpose of this exercise was for you to have a better understanding of the inner workings of a linked list. • The StudentLinkedListclass has fewer methods than the java.util.LinkedList and the data type of the object stored inside each node is Student instead of Object. • When retrieving the value inside each node, since the type is Student, we may call the Student class methods without having to cast. For example, assuming that firstis an object of type Node and elementis an object of type Student. We could say: first.value.equals(element); where equals is a method of the Student class. No casting needed.

  7. Inner classes • The implementation of the linked list class in the textbook, as well as the implementation of the StudentLinkedListclass, make use of inner classes. • Since the Node class is only used by the StudentLinkedListclass, it was declared inside the StudentLinkedListclassas a private inner class. (It cannot be used by classes outside of the StudentLinkedListclass). • The advantage of inner classes is that they have access to the private members (variables, methods, other inner classes) of the outer class. Although, in our implementation, the Node class is not accessing the private members of the StudentLinkedListclass, which are the first and last instance variables.

  8. Stacks and Queues • Stacks and queues are other data structures that allow inserting and removing items at the ends of the list only, not the middle. • A stackis a collection of items with a “last in, first out” retrieval concept, known as LIFO. It lets you insert and remove elements at only one end, the top of the stack. You may think of it as a stack of plates at a buffet restaurant. • Stacks can be used by any system that needs to process the elements in the reverse order that they were added to the list. • A stack class normally provides the following methods: • push - to add an element at the top of the stack • pop - to remove a element from the top of the stack • peek - to look at the element stored at the top of the stack without removing it. • empty – to check if there are elements in the stack

  9. Stacks and Queues • Queues are similar to stacks but you add elements at the end of the queue and remove elements from the other end, which is called the head (the beginning) of the queue. • Queues store items in a “first in, first out” fashion, also known as FIFO. Queues can be used by any system that needs to process elements in the same order that they were added to the list. For example, the list of print jobs for a network printer. • A queue class normally provides the following methods: • enqueue – to add an element at the tail of the queue • dequeue– to remove the element at the head of the queue. • peek – to get the element at the head of the queue without removing it. • empty – to check if there are elements in the queue.

  10. References • Gaddis, Tony, and Godfrey Muganda. Starting out with Java: from Control Structures through Data Structures 2nd ed. Boston, USA: Addison-Wesley, 2012 • Horstmann, Cay. Big Java 4th ed. New York, USA: John Wiley & Sons, Inc., 2010.

More Related