Welcome back! In this lesson we’re going to wrap up our discussion of lists. First, we’ll make some forward progress on our linked list implementation. Then, we’ll compare and contrast the two performance of our two approaches.
But! Let’s warm up with another debugging challenge!
At this point we can initialize our linked lists and get and set items. But what about add and remove? It’s not a list yet!
Both add and remove require adjusting the linkage to either insert or delete elements. This is tricky! Let’s start with remove. First, let’s look at what needs to happen using a diagram.
OK, now let’s take a stab at this in code!
What about add? We’ll leave that for you to work on… But, to help you get started, let’s diagram it first:
ArrayList
v. LinkedList
PerformanceArrayList
v. LinkedList
PerformanceLet’s examine the performance tradeoffs of our ArrayList
versus our LinkedList
.
Now, you might be wondering why anyone would use a linked list, ever! However, there are applications that only ever modify the ends of the list!
For example, consider a help queue. Requests are added at one end and removed from the other. So we are only ever modifying the front or the end of the list.
Modifying the front of a linked list is O(1)
.
But what about the end?
Could we make that O(1)
too?
Sure!
Let’s see how.
Note that this approach allows us to implement adding to the end of a linked list in O(1). What about if we also wanted to support efficient removal from the end? We’d need to make one additional change.
Starting with the SimpleLinkedList
class below, complete the code for add
.
You'll want review the rest of the code to understand how this list implementation works and how to
walk a linked list and manipulate the references properly.
add
takes the position to add at as an Int
as its first parameter and the Any
reference to add as its second.
add
should add the element to the list, increasing the size by one and shifting
elements after the add position backward.
You should require
that the passed position is valid for this list.
But note that you should allow adding a new item to the end of the existing list.
When you are done, here is how your SimpleLinkedList
class should work:
Increasingly, important decisions about our lives are being made by algorithms. Whether you get a job. Who you meet, get to know, and fall in love with. When you’re in trouble, whether you get extra help or are left to struggle. If you can get a loan to buy that home, or need to live somewhere else.
Cathy O’Neil has played an important role drawing attention to the ways in which algorithmic decision making is shaping and misshaping our lives. Her foundational book “Weapons of Math Destruction” explores how this topic intersects with multiple aspects of our lives. In the video below, she discusses what we should expect from the increasingly mysteriously algorithms that seem destined to continue to shape our lives:
Need more practice? Head over to the practice page.