Computer Science Data Structures
Linked Lists
This program does the following:
// CREATE linked list from an input array of integers, RETURN head pointer.
// MERGE an array of linked lists into one linked list, RETURN head pointer. (DUPLICATES ARE ALLOWED)
// REMOVE duplicates from an input linked list, RETURN head pointer.
// REVERSE a linked list without creating a new node, RETURN head pointer.