- Succinct data structure
In
computer science , a succinct data structure for a given data type is a representation of the underlying combinatorial object that uses an amount of space “close” to the information theoretic lower bound together with efficient algorithms for navigation, search, insertion and deletion operations.A natural example is the representation of a
binary tree : an arbitrary binary tree on n nodes can be represented in bits while supporting a variety of operations on any node, which includes finding its parent, its left and right child, and returning the size of its subtree, each in constant time. The number of different binary trees on nodes is . For large , this is about ; thus we need at least about bits to encode it. A succinct binary tree therefore would occupy only bits per node.The concept was introduced by Jacobson [http://linkinghub.elsevier.com/retrieve/pii/S0196677400911519] , to encode
bit vector s, (unlabeled) trees andplanar graph s in space essentially equal to the information-theoretic lower bound, while supporting navigation on it efficiently.External links
* [http://sux.dsi.unimi.it/ C++ and Java implementations of succinct data structures]
* [http://blogs.msdn.com/devdev/archive/2005/12/05/500171.aspx Developing for Developers : Succinct data structures]
Wikimedia Foundation. 2010.