Learning Fuze > data-structures-linked-lists > Flashcards
How are linked lists different from an array?
arrays can directly access anything within the array, linked lists have to be traversed (no way to directly access anything)
How would you access an arbitrary node in a linked list (not just the “head”)?