Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

list

Play with linked lists and binary trees easily !

This library provides a basic set of functions for both structures. There's only one rule to use it, you have to declare your structure like this:

struct list {
  struct list *next;
  ...
};

You also have to do the same for binary trees, take a look at list.h and tree.h for more details.

build

mkdir build
cd build
cmake ..
make

About

A singly linked list and binary tree C library

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages