Skip to content

The singly linked list data structure in the C programming language.

Notifications You must be signed in to change notification settings

pujfei/csinglylist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

What's in this repository

This repository is an implementation of the singly linked list data structure, including creating, appending, inserting, deleting, counting, reversing, query, traversal and destroying manipulations.

On Windows, what we need to do is put these files in a Visual Studio project and build them, after which we can run the main routine with either the debug or the release version executable file.

On linux, just compile it with a gcc command line like this:

gcc -o main main.c list.c
./main

You may also reuse the singly linked list functions in this repository by simply including the "list.h" file somewhere else.

About

The singly linked list data structure in the C programming language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages