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

f887e59 · Oct 29, 2019

History

2 Commits
Oct 29, 2019
Oct 29, 2019

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