Pseudocode for a singly linked list

DECLARE CLASS Node
  DECLARE STRING name
  DECLARE Node next
END DECLARE
DECLARE Node head = NULL

Comments