mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
14 lines
515 B
Text
14 lines
515 B
Text
LibDS is a small but powerful and easy to use library containing a few
|
|
very useful data structures. Currently, the following data structures are
|
|
supported:
|
|
- a balanced binary tree (an AVL tree);
|
|
- a binary HEAP;
|
|
- a QUEUE;
|
|
- a HASH table;
|
|
- a SET and a BAG;
|
|
- a variable length array that can grows dynamically as new elements are
|
|
added or deleted (PARRAY).
|
|
- a STACK;
|
|
|
|
LibDS has been designed to be very easy to use, without sacrificing either
|
|
flexibility or speed. The API is small, and clean.
|