Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Linked list

This folder contains two different ways to implement Linked list

  • the first in main.c relies on recusion.
  • the second in list.c relies on loops and adding another data structure called list to hold list related data, like list head and size.
  • practice problems