Libdatastruct 0.0.1 review

Download
by rbytes.net on

Libdatastruct is an ANSI C library for abstract data types (ADT) and common algorithms

License: GPL (GNU General Public License)
File size: 16K
Developer: Davidlohr Bueso Arnett
0 stars award from rbytes.net

Libdatastruct is an ANSI C library for abstract data types (ADT) and common algorithms. Since it uses some compiler specific optimization methods, it is compatible for any GCC (or compatible) compiler.

This helps the programmer focus on other, usually more important, aspects of the program, and not have to reinvent the wheel.

Memory has been considered a vital factor, so problems in it's management have been (or tried to) avoided, therefore memory leaks, use of uninitialized memory, reading/writing invalid blocks, etc. are a constant preoccupation.

These are not original algorithms, they have been used for years, and are a fundamental part of computer science.

Installation:

make
make install

Usage:

compilation: cc program.c -ldatastruct -Wall -o program

Libdatastruct 0.0.1 keywords