What are the tradeoffs between linked lists and arrays?
What are the tradeoffs between singly linked lists and doubly linked lists?
What are the run times for insertion, deletion, and accessing from linked lists?
Key Terms
Graph
Node
Singly linked list
Doubly linked list
Random access
Sequential access
Nodes
In the Stack and Queue data structure,
A Graph is a category of abstract data type that is used to organize relationships between data.
The thing that all graphs share is that they are comprised of nodes that hold a single piece of data, and edges that connect two nodes.
Q: Consider the abstract data structures below. What do the nodes in each structure point to?
Linked Lists
Doubly Linked Lists
Trees
Making a Node Class for Linked Lists
Nodes themselves typically do not have any methods.
The simplest kind of node is the one used in a linked list. It holds its own data and a pointer to the next node in the list.
// depending on how the node is used, it may have a next, prev, parent, or children, property
class Node {
constructor(data) {
this.data = data;
this.next = null;
}
}
const nodeA = new Node("a");
const nodeB = new Node("b");
const nodeC = new Node("C");
nodeA.next = nodeB;
nodeB.next = nodeC;
console.log(nodeA, nodeB, nodeC); // What do you expect to see?
Q: What is the head of the linked list? What is the tail?
Making a Linked List Class
The linked list itself holds only a reference to a head node and various methods for modifying or "traversing" the list.
class LinkList {
constructor() {
this.head = null;
}
prependToHead(data) { /* ... */ }
appendToTail(data) {
const newNode = new Node(data);
if (!this.head) {
this.head = newNode;
}
else {
let currNode = this.head;
while (currNode.next !== null) {
currNode = currNode.next;
}
currNode.next = newNode;
}
}
}
To put the new node at the end of the list, we need to first get to the end of the list, starting at the list's head. We'll use a currNode variable to keep track of where we are in the list.
Using a while loop, we iterate as long as the currNode has a next node to move to.
We'll reach the tail node once currNode has no next node. At this point, we set the currNode (which is the tail) to point to the new node.
Test:
Adding to a list with multiple nodes
Adding to an empty list
Adding to a list with one node
Algorithm: isCyclic
This is not a method of linked lists but a method whose input is the head of a linked list. It should return true if the linked list contains a cycle, false otherwise.
const list = new LinkedList();
const nodeA = new Node("a");
const nodeB = new Node("b");
const nodeC = new Node("c");
list.head = nodeA;
nodeA.next = nodeB;
nodeB.next = nodeC;
isCyclic(list.head); // false
nodeC.next = nodeA; // a cycle!
isCyclic(list.head); // true
Solution
function isCyclic(headNode) {
let nodesEncountered = []; // track nodes we've seen
let currentNode = headNode; // track the current node in our traversal
while(currentNode) { // eventually it will be null
// if we've encountered it before...
if (nodesEncountered.includes(currentNode)) {
return true; // we found a cycle!
}
// otherwise...
nodesEncountered.push(currentNode); // add it to the encountered list
currentNode = currentNode.next; // traverse to the next node
}
return false;
}