Skip to content

create linked list from an input array of integers, merge an array of linked lists into one (DUPLICATES ARE ALLOWED), REMOVE duplicates from an input linked list, reverse a linked list without creating a new node

Notifications You must be signed in to change notification settings

marixp/ArrayToLinkedList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

create linked list from an input array of integers, merge an array of linked lists into one (DUPLICATES ARE ALLOWED), REMOVE duplicates from an input linked list, reverse a linked list without creating a new node

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published