Study group for CIE Computer Science - 9618
Watch this threadPage 1 of 1
Skip to page:
09thompsons
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#1
bonk 101
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#2
09thompsons
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#3
(Original post by bonk 101)
how do you do linked lists, specifically 10L in the hodder book?
how do you do linked lists, specifically 10L in the hodder book?
The StartPointer points to the first item in the linked list. Every item in the list is stored together with a pointer to the next item - this is called a node. The last item in the linked list has a NullPointer.
Uses of linked lists:
1. Using arrays to implement a stack
2. Using arrays to implement a queue
3. Using arrays to implement a binary tree
Alternative definition - Linked List: a linear collection of data elements whose order is not given by physical placements in memory (non-contiguous). Each element points to the next.
I will also send some links that might help

0
reply
09thompsons
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#4
(Original post by bonk 101)
how do you do linked lists, specifically 10L in the hodder book?
how do you do linked lists, specifically 10L in the hodder book?
https://qualifiedquest.com/apps/pdfj...***=78de2da5eb
https://isaaccomputerscience.org/con...=all&stage=all
https://www.tes.com/teaching-resourc...tures-12613640 (cmd F "linked list")
0
reply
X
Page 1 of 1
Skip to page:
Quick Reply
Back
to top
to top