Skip to content

LostinTimeandspaceYT/linked_list_c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Linked List in C

A generic implementation of a linked list data structure written in C.

Objective

The objective of this library is to provide a generically typed linked list that can be used in C and in C++. This implementation utilizes a stack to quickly add elements to the list.

TO-DO:

  • Create functions for removing elements from the linked list. linked_list_pop() and linked_list_remove_at(int index).
  • Create functions for inserting elements into the list. linked_list_append() and linked_list_insert_at(int index).
  • Have code build on Windows and other OS.

About

Linked List implementation for C and C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published