File: control

package info (click to toggle)
stx-btree 0.9-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 9,188 kB
  • ctags: 8,163
  • sloc: cpp: 7,496; sh: 3,964; ansic: 235; perl: 104; makefile: 100; awk: 16; xml: 9
file content (46 lines) | stat: -rw-r--r-- 1,817 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Source: stx-btree
Priority: extra
Maintainer: Yury Stankevich <urykhy@gmail.com>
Build-Depends: debhelper (>= 9.0), autotools-dev, libcppunit-dev, libwxgtk3.0-dev, doxygen, dh-autoreconf
Standards-Version: 3.9.6
Section: libdevel
Homepage: http://idlebox.net/2007/stx-btree/

Package: stx-btree-dev
Architecture: all
Recommends: c++-compiler
Suggests: stx-btree-doc
Depends: ${misc:Depends}
Description: b+tree implementation in c++
 The STX B+ Tree package is a set of C++ template classes
 implementing a B+ tree key/data container in main memory.
 Designed to be drop-in replacements  of the STL containers
 set, map, multiset and multimap and follow their interfaces very closely.
 By packing multiple value pairs into each node
 of the tree the B+ tree reduces heap fragmentation and utilizes cache-line
 effects better than the standard red-black binary tree.
 The classes contain extensive assertion and verification mechanisms
 to ensure the implementation's correctness by testing the tree invariants.
 To illustrate the  B+ tree's structure a wxWidgets demo program is included
 in the stx-btree-demo package.

Package: stx-btree-doc
Section: doc
Architecture: all
Suggests: doc-base
Depends: ${misc:Depends}
Description: b+tree implementation in c++, doxygen documentation
 The STX B+ Tree package is a set of C++ template classes
 implementing a B+ tree key/data container in main memory.
 This package provides a doxygen-generated documentation.

Package: stx-btree-demo
Section: misc
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: b+tree implementation in c++, demo program
 The STX B+ Tree package is a set of C++ template classes
 implementing a B+ tree key/data container in main memory.
 This package provides a demonstration program to illustrate
 a B+ tree structure.