Skip to content

Lajule/list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jun 13, 2020
bf8de5b · Jun 13, 2020

History

61 Commits
Jan 30, 2016
Jan 30, 2016
Jun 13, 2020
Jan 30, 2016
Jun 13, 2020
Jan 30, 2016
Jun 13, 2020

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

Watchers

Forks

Releases

No releases published

Packages

No packages published