reading-notes

Read: Linked Lists Summary:

What is a Linked List?

ALGORITHM Includes (value) // INPUT <– integer value // OUTPUT <– boolean

Current <– Head

WHILE Current is not NULL IF Current.Value is equal to value return TRUE

Current <-- Current.Next

return FALSE ```