Instructor: Joanna Klukowska
Copyright 2020 Joanna Klukowska. Unless noted otherwise all content is released under a
Creative Commons Attribution-ShareAlike 4.0 International License.
Background image by Stewart Weiss
© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.In a doubly linked list there is a double connection between the nodes: each node has a reference to the node that follows and to the node that precedes it.
© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.In a doubly linked list there is a double connection between the nodes: each node has a reference to the node that follows and to the node that precedes it.
In a circular linked list the last node is connected back to the first node (instead of having its reference set to null). Circular linked lists could be singly- or doubly linked.
© Joanna Klukowska. CC-BY-SA.
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
tail.prev
provides the reference to the node before last and it does not require iterating through the entire list.© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
tail.prev
provides the reference to the node before last and it does not require iterating through the entire list.LinkedList<E>
class uses a doubly linked list implementation.© Joanna Klukowska. CC-BY-SA.
Circular singly linked list.
© Joanna Klukowska. CC-BY-SA.
Circular singly linked list.
Circular doubly linked list.
next
reference, points back to the first nodeprev
reference, points to the last node© Joanna Klukowska. CC-BY-SA.
An iterator is an object that allows us to traverse a collection (data structure) and visit each element exactly once.
Objective: be able to return the next element fast, i.e., in O(1), so that the entire collection can be traversed in O(N) time.
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
get()
method takes O(N) time)© Joanna Klukowska. CC-BY-SA.
Here is a very simple iterator to satisfies the Iterator<E>
interface (well, almost):
private class Itr implements Iterator<E> { private Node current = head; public boolean hasNext() { return current != null; } public E next() { E tmp = current.data; current = current.next; return tmp; }}
© Joanna Klukowska. CC-BY-SA.
Here is a very simple iterator to satisfies the Iterator<E>
interface (well, almost):
private class Itr implements Iterator<E> { private Node current = head; public boolean hasNext() { return current != null; } public E next() { E tmp = current.data; current = current.next; return tmp; }}
and to make the list itself Iterable
, we need to add the following method to the list
public Iterator<E> iterator() { return new Itr();}
© Joanna Klukowska. CC-BY-SA.
LinkedList<E>
source codeStudy the source code of a doubly linked list implementation provided by
the LinkedList<E>
class in Java.
You should be able to understand what it does and why.
© Joanna Klukowska. CC-BY-SA.
Given a reference to the first node, i.e. head
determine if the list is circular or not.
tail
reference pointing to the last nodetail
referenceWhat is the performance of these two methods.
© Joanna Klukowska. CC-BY-SA.
Given a reference to the first node, i.e. head
determine if the list has a loop or not
(a loop in a list means that the last node points back to another node in the list).
© Joanna Klukowska. CC-BY-SA.
Assume that we execute the following code fragment. What is the output?
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}Iterator<String> itr = aL.iterator();System.out.println(itr.next() );itr.next();System.out.println(itr.next() );Iterator<String> itr1 = aL.iterator();Iterator<String> itr2 = aL.iterator();System.out.println(itr1.next());System.out.println(itr2.next());System.out.println(itr.next());
Instructor: Joanna Klukowska
Copyright 2020 Joanna Klukowska. Unless noted otherwise all content is released under a
Creative Commons Attribution-ShareAlike 4.0 International License.
Background image by Stewart Weiss
© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.In a doubly linked list there is a double connection between the nodes: each node has a reference to the node that follows and to the node that precedes it.
© Joanna Klukowska. CC-BY-SA.
The list that we discussed extensively is a singly linked list. In that list
null
.In a doubly linked list there is a double connection between the nodes: each node has a reference to the node that follows and to the node that precedes it.
In a circular linked list the last node is connected back to the first node (instead of having its reference set to null). Circular linked lists could be singly- or doubly linked.
© Joanna Klukowska. CC-BY-SA.
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
tail.prev
provides the reference to the node before last and it does not require iterating through the entire list.© Joanna Klukowska. CC-BY-SA.
class Node<E> { E data; Node<E> next; Node<E> prev;}
tail.prev
provides the reference to the node before last and it does not require iterating through the entire list.LinkedList<E>
class uses a doubly linked list implementation.© Joanna Klukowska. CC-BY-SA.
Circular singly linked list.
© Joanna Klukowska. CC-BY-SA.
Circular singly linked list.
Circular doubly linked list.
next
reference, points back to the first nodeprev
reference, points to the last node© Joanna Klukowska. CC-BY-SA.
An iterator is an object that allows us to traverse a collection (data structure) and visit each element exactly once.
Objective: be able to return the next element fast, i.e., in O(1), so that the entire collection can be traversed in O(N) time.
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an ArrayList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < aL.size(); i++ ) { System.out.println(aL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = aL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
© Joanna Klukowska. CC-BY-SA.
Here is an example of iterating over an LinkedList<E>
object using an ordinary
for
loop and the get(index)
method and using an iterator.
LinkedList<String> lL = new LinkedList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { lL.add(strings[i]);}System.out.println("Using for loop with .get() method" );for (int i = 0; i < lL.size(); i++ ) { System.out.println(lL.get(i));}System.out.println("Using an iterator" );Iterator<String> itr = lL.iterator();itr = lL.iterator();while (itr.hasNext()){ System.out.println(itr.next() );}
What is the performance of each method?
get()
method takes O(N) time)© Joanna Klukowska. CC-BY-SA.
Here is a very simple iterator to satisfies the Iterator<E>
interface (well, almost):
private class Itr implements Iterator<E> { private Node current = head; public boolean hasNext() { return current != null; } public E next() { E tmp = current.data; current = current.next; return tmp; }}
© Joanna Klukowska. CC-BY-SA.
Here is a very simple iterator to satisfies the Iterator<E>
interface (well, almost):
private class Itr implements Iterator<E> { private Node current = head; public boolean hasNext() { return current != null; } public E next() { E tmp = current.data; current = current.next; return tmp; }}
and to make the list itself Iterable
, we need to add the following method to the list
public Iterator<E> iterator() { return new Itr();}
© Joanna Klukowska. CC-BY-SA.
LinkedList<E>
source codeStudy the source code of a doubly linked list implementation provided by
the LinkedList<E>
class in Java.
You should be able to understand what it does and why.
© Joanna Klukowska. CC-BY-SA.
Given a reference to the first node, i.e. head
determine if the list is circular or not.
tail
reference pointing to the last nodetail
referenceWhat is the performance of these two methods.
© Joanna Klukowska. CC-BY-SA.
Given a reference to the first node, i.e. head
determine if the list has a loop or not
(a loop in a list means that the last node points back to another node in the list).
© Joanna Klukowska. CC-BY-SA.
Assume that we execute the following code fragment. What is the output?
ArrayList<String> aL = new ArrayList<>();String [] strings = {"hello", "big", "pink", "cat"};for (int i = 0; i < strings.length; i++) { aL.add(strings[i]);}Iterator<String> itr = aL.iterator();System.out.println(itr.next() );itr.next();System.out.println(itr.next() );Iterator<String> itr1 = aL.iterator();Iterator<String> itr2 = aL.iterator();System.out.println(itr1.next());System.out.println(itr2.next());System.out.println(itr.next());
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |