Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 431 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 431 Bytes

ArrayToLinkedList

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.