array vStatus: Tags: Links: Abstract Data Type
Linked List
Principles
- Each elem is linked to following like a chain
- List has a head
- Last elem points to null
- When adding, you must start at the head
Characteristics
Single vs double
- Head vs head + tail
Single vs doubly linked
- Next vs next + prev
- helps make some operations O(1) if DHDL
Circular
- tail→next = head
- head→prev = tail
Sorting type
Position-oriented
- position is passed as parameter
Value-oriented data
Two possibilities:
- insert in sort order using a search key, O(n)
- Prepend then sort list, O(nlogn)
- Yucky!!
Traversing
In relation to removing the last node:
previous
local pointer- Store previous node, keep going until
curr→next == NULL
- set
previous
as tail,delete curr
- Store previous node, keep going until
- Look ahead
next→next
to check if null- must attend to empty + 1 node case
- prev pointer in node structure
Syntax
Functions
add_to_head
add_to_tail
remove_from_head
remove_from_tail
Variables
list→head
node→next
node→data
Implementation
- Have a var that stores pointer of next item
|
|
Add to Head
- Create new node, set next of new node to old head
New list:
|
|
Remove from Head
References:
Created:: 2021-11-01 15:21