Skip to content

function to push/add new node/element in a linked list using dynamic memory allocation.

Notifications You must be signed in to change notification settings

MernaHesham/LinkedList-C-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LinkedList-C-Functions

functions to do edit a dunamic linked list in c.

dynamicPush.c

push a new node int the beginning of the list

inputs

refernce head of the first element of the list data to be added in the new node

dynamicInsert.c

inserts a new node after a specific node

inputs

refernce head of the first element of the list data to be added in the new node AfterNode the data which we will insert the new node after

dynamicDelete.c

deletes a specific node in the list

inputs

refernce head of the first element of the list node data to be deleted

dynamicTraverse.c

prints all elements in the list

inputs

refernce head of the first element of the list

dynamicAppend.c

adds a new node at the end of the list

inputs

refernce head of the first element of the list data to be added in the new node

About

function to push/add new node/element in a linked list using dynamic memory allocation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages