Skip to content

Commit

Permalink
What's in this repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
pujfei committed Oct 29, 2019
1 parent acbf2ac commit f887e59
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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:

```bash
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.

0 comments on commit f887e59

Please sign in to comment.