index.html (1530B)
1 <html> 2 <head> 3 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 5 <meta http-equiv="Content-Language" content="en" /> 6 <title>skalibs: the datastruct library interface</title> 7 <meta name="Description" content="skalibs: the datastruct library interface" /> 8 <meta name="Keywords" content="skalibs datastruct libdatastruct library interface" /> 9 <!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> --> 10 </head> 11 <body> 12 13 <p> 14 <a href="../libskarnet.html">libskarnet</a><br /> 15 <a href="../index.html">skalibs</a><br /> 16 <a href="//skarnet.org/software/">Software</a><br /> 17 <a href="//skarnet.org/">skarnet.org</a> 18 </p> 19 20 <h1> The <tt>datastruct</tt> library interface </h1> 21 22 <p> 23 <tt>libdatastruct</tt> implements generic data structures like chained 24 lists and AVL trees, in a memory-efficient and CPU-efficient way. 25 </p> 26 27 <h2> Compiling </h2> 28 29 <ul> 30 <li> Use <tt>#include <skalibs/datastruct.h></tt> </li> 31 <li> You can also use the lower-level headers included by <tt>skalibs/datastruct.h</tt> instead. </li> 32 </ul> 33 34 <h2> Programming </h2> 35 36 <p> 37 <tt>skalibs/datastruct.h</tt> is a collection of several headers, each 38 one defining a specific data structure and providing functions to work on it. 39 </p> 40 41 <ul> 42 <li> <a href="genqdyn.html"><tt>skalibs/genqdyn.h</tt></a>: dynamically allocated queues for generic objects </li> 43 <li> FIXME: To be completed </li> 44 </ul> 45 46 </body> 47 </html>