Skip to content
/ list Public
forked from Lajule/list

A singly linked lists and binary trees C library

Notifications You must be signed in to change notification settings

VO2Group/list

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 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 for 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 to list.h and tree.h for more details.

build

mkdir build
cd build
cmake ..
make

About

A singly linked lists and binary trees C library

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.3%
  • CMake 1.7%