There are some data structures around that are really useful but are unknown to most programmers. Which ones are they?
Everybody knows about linked lists, binary trees, and hashes, but what about Skip lists [1] and Bloom filters [2] for example. I would like to know more data structures that are not so common, but are worth knowing because they rely on great ideas and enrich a programmer's tool box.
PS: I am also interested in techniques like Dancing links [3] which make clever use of properties of a common data structure.
EDIT: Please try to include links to pages describing the data structures in more detail. Also, try to add a couple of words on why a data structure is cool (as Jonas Kölker [4] already pointed out). Also, try to provide one data-structure per answer. This will allow the better data structures to float to the top based on their votes alone.
Tries [1], also known as prefix-trees or crit-bit trees [2], have existed for over 40 years but are still relatively unknown. A very cool use of tries is described in " TRASH - A dynamic LC-trie and hash data structure [3]", which combines a trie with a hash function.
[1] http://en.wikipedia.org/wiki/TrieBloom filter [1]: Bit array of m bits, initially all set to 0.
To add an item you run it through k hash functions that will give you k indices in the array which you then set to 1.
To check if an item is in the set, compute the k indices and check if they are all set to 1.
Of course, this gives some probability of false-positives (according to wikipedia it's about 0.61^(m/n) where n is the number of inserted items). False-negatives are not possible.
Removing an item is impossible, but you can implement counting bloom filter, represented by array of ints and increment/decrement.
[1] http://en.wikipedia.org/wiki/Bloom_filterRope [1]: It's a string that allows for cheap prepends, substrings, middle insertions and appends. I've really only had use for it once, but no other structure would have sufficed. Regular strings and arrays prepends were just far too expensive for what we needed to do, and reversing everthing was out of the question.
[1] http://en.wikipedia.org/wiki/Rope_%28data_structure%29Skip lists [1] are pretty neat.
Wikipedia [2]
A skip list is a probabilistic data structure, based on multiple parallel, sorted linked lists, with efficiency comparable to a binary search tree (order log n average time for most operations).
They can be used as an alternative to balanced trees (using probalistic balancing rather than strict enforcement of balancing). They are easy to implement and faster than say, a red-black tree. I think they should be in every good programmers toolchest.
If you want to get an in-depth introduction to skip-lists here is a link to a video [3] of MIT's Introduction to Algorithms lecture on them.
Also, here [4] is a Java applet demonstrating Skip Lists visually.
[1] http://en.wikipedia.org/wiki/Skip_listSpatial Indices [1], in particular R-trees [2] and KD-trees [3], store spatial data efficiently. They are good for geographical map coordinate data and VLSI place and route algorithms, and sometimes for nearest-neighbor search.
Bit Arrays [4] store individual bits compactly and allow fast bit operations.
[1] http://en.wikipedia.org/wiki/Spatial_indexZippers [1] - derivatives of data structures that modify the structure to have a natural notion of 'cursor' -- current location. These are really useful as they guarantee indicies cannot be out of bound -- used, e.g. in the xmonad window manager [2] to track which window has focused.
Amazingly, you can derive them by applying techniques from calculus [3] to the type of the original data structure!
[1] http://www.haskell.org/haskellwiki/ZipperHere are a few:
Suffix tries. Useful for almost all kinds of string searching (http://en.wikipedia.org/wiki/Suffix_trie#Functionality). See also suffix arrays; they're not quite as fast as suffix trees, but a whole lot smaller.
Splay trees (as mentioned above). The reason they are cool is threefold:
Heap-ordered search trees: you store a bunch of (key, prio) pairs in a tree, such that it's a search tree with respect to the keys, and heap-ordered with respect to the priorities. One can show that such a tree has a unique shape (and it's not always fully packed up-and-to-the-left). With random priorities, it gives you expected O(log n) search time, IIRC.
A niche one is adjacency lists for undirected planar graphs with O(1) neighbour queries. This is not so much a data structure as a particular way to organize an existing data structure. Here's how you do it: every planar graph has a node with degree at most 6. Pick such a node, put its neighbors in its neighbor list, remove it from the graph, and recurse until the graph is empty. When given a pair (u, v), look for u in v's neighbor list and for v in u's neighbor list. Both have size at most 6, so this is O(1).
By the above algorithm, if u and v are neighbors, you won't have both u in v's list and v in u's list. If you need this, just add each node's missing neighbors to that node's neighbor list, but store how much of the neighbor list you need to look through for fast lookup.
I think lock-free alternatives to standard data structures i.e lock-free queue, stack and list are much overlooked.
They are increasingly relevant as concurrency becomes a higher priority and are much more admirable goal than using Mutexes or locks to handle concurrent read/writes.
Here's some links
http://www.cl.cam.ac.uk/research/srg/netos/lock-free/
http://www.research.ibm.com/people/m/michael/podc-1996.pdf [Links to PDF]
http://www.boyet.com/Articles/LockfreeStack.html
Mike Acton's [1] (often provocative) blog has some excellent articles on lock-free design and approaches
[1] http://cellperformance.beyond3d.com/articles/index.htmlI think Disjoint Set [1] is pretty nifty for cases when you need to divide a bunch of items into distinct sets and query membership. Good implementation of the Union and Find operations result in amortized costs that are effectively constant (inverse of Ackermnan's Function, if I recall my data structures class correctly).
[1] http://en.wikipedia.org/wiki/Disjoint-set_data_structureFibonacci heaps [1]
They're used in some of the fastest known algorithms (asymptotically) for a lot of graph-related problems, such as the Shortest Path problem. Dijkstra's algorithm runs in O(E log V) time with standard binary heaps; using Fibonacci heaps improves that to O(E + V log V), which is a huge speedup for dense graphs. Unfortunately, though, they have a high constant factor, often making them impractical in practice.
[1] http://en.wikipedia.org/wiki/Fibonacci_heapAnyone with experience in 3D rendering should be familiar with BSP trees [1]. Generally, it's the method by structuring a 3D scene to be manageable for rendering knowing the camera coordinates and bearing.
[1] http://en.wikipedia.org/wiki/Binary_space_partitioningBinary space partitioning (BSP) is a method for recursively subdividing a space into convex sets by hyperplanes. This subdivision gives rise to a representation of the scene by means of a tree data structure known as a BSP tree.
In other words, it is a method of breaking up intricately shaped polygons into convex sets, or smaller polygons consisting entirely of non-reflex angles (angles smaller than 180°). For a more general description of space partitioning, see space partitioning.
Originally, this approach was proposed in 3D computer graphics to increase the rendering efficiency. Some other applications include performing geometrical operations with shapes (constructive solid geometry) in CAD, collision detection in robotics and 3D computer games, and other computer applications that involve handling of complex spatial scenes.
Have a look at Finger Trees [1], especially if you're a fan of the previously mentioned [2] purely functional data structures. They're a functional representation of persistent sequences supporting access to the ends in amortized constant time, and concatenation and splitting in time logarithmic in the size of the smaller piece.
As per the original article [3]:
Our functional 2-3 finger trees are an instance of a general design technique in- troduced by Okasaki (1998), called implicit recursive slowdown. We have already noted that these trees are an extension of his implicit deque structure, replacing pairs with 2-3 nodes to provide the flexibility required for efficient concatenation and splitting.
A Finger Tree can be parameterized with a monoid [4], and using different monoids will result in different behaviors for the tree. This lets Finger Trees simulate other data structures.
[1] http://en.wikipedia.org/wiki/Finger_treesCircular or ring buffer [1] - used for streaming, among other things.
[1] http://en.wikipedia.org/wiki/Circular_bufferI'm surprised no one has mentioned Merkle trees (ie. Hash Trees [1]).
Used in many cases (P2P programs, digital signatures) where you want to verify the hash of a whole file when you only have part of the file available to you.
[1] http://en.wikipedia.org/wiki/Hash_tree<zvrba> Van Emde-Boas trees
I think it'd be useful to know why they're cool. In general, the question "why" is the most important to ask ;)
My answer is that they give you O(log log n) dictionaries with {1..n} keys, independent of how many of the keys are in use. Just like repeated halving gives you O(log n), repeated sqrting gives you O(log log n), which is what happens in the vEB tree.
How about splay trees [1]?
Also, Chris Okasaki's purely functional data structures [2] come to mind.
[1] http://en.wikipedia.org/wiki/Splay_treeAn interesting variant of the hash table is called Cuckoo Hashing [1]. It uses multiple hash functions instead of just 1 in order to deal with hash collisions. Collisions are resolved by removing the old object from the location specified by the primary hash, and moving it to a location specified by an alternate hash function. Cuckoo Hashing allows for more efficient use of memory space because you can increase your load factor up to 91% with only 3 hash functions and still have good access time.
[1] http://en.wikipedia.org/wiki/Cuckoo_hashingA min-max heap [1] is a variation of a heap [2] that implements a double-ended priority queue. It achieves this by by a simple change to the heap property: A tree is said to be min-max ordered if every element on even (odd) levels are less (greater) than all childrens and grand children. The levels are numbered starting from 1.
http://internet512.chonbuk.ac.kr/datastructure/heap/img/heap8.jpg
[1] http://cg.scs.carleton.ca/~morin/teaching/5408/refs/minmax.pdfI like Cache Oblivious datastructures [1]. The basic idea is to lay out a tree in recursively smaller blocks so that caches of many different sizes will take advantage of blocks that convenient fit in them. This leads to efficient use of caching at everything from L1 cache in RAM to big chunks of data read off of the disk without needing to know the specifics of the sizes of any of those caching layers.
[1] http://blogs.msdn.com/b/devdev/archive/2007/06/12/cache-oblivious-data-structures.aspxLeft Leaning Red-Black Trees [1]. A significantly simplified implementation of red-black trees by Robert Sedgewick published in 2008 (~half the lines of code to implement). If you've ever had trouble wrapping your head around the implementation of a Red-Black tree, read about this variant.
Very similar (if not identical) to Andersson Trees.
[1] http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdfWork Stealing Queue
Lock-free data structure for dividing the work equaly among multiple threads Implementation of a work stealing queue in C/C++? [1]
[1] https://stackoverflow.com/questions/2101789/implementation-of-a-work-stealing-queue-in-c-cBootstrapped skew-binomial heaps [1] by Gerth Stølting Brodal and Chris Okasaki:
Despite their long name, they provide asymptotically optimal heap operations, even in a function setting.
O(1)
size, union, insert, minimumO(log n)
deleteMin Note that union takes O(1)
rather than O(log n)
time unlike the more well-known heaps that are commonly covered in data structure textbooks, such as
leftist heaps
[2]. And unlike
Fibonacci heaps
[3], those asymptotics are worst-case, rather than amortized, even if used persistently!
There are multiple [4] implementations [5] in Haskell.
They were jointly derived by Brodal and Okasaki, after Brodal came up with an imperative heap [6] with the same asymptotics.
[1] http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.973Most, if not all, of these are documented on the NIST Dictionary of Algorithms and Data Structures [5]
[1] http://en.wikipedia.org/wiki/Kd-treeBall Trees. Just because they make people giggle.
A ball tree is a data structure that indexes points in a metric space. Here's an article on building them. [1] They are often used for finding nearest neighbors to a point or accelerating k-means.
[1] http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.91.8209&rep=rep1&type=pdfNot really a data structure; more of a way to optimize dynamically allocated arrays, but the gap buffers [1] used in Emacs are kind of cool.
[1] http://en.wikipedia.org/wiki/Gap_bufferFenwick Tree. It's a data structure to keep count of the sum of all elements in a vector, between two given subindexes i and j. The trivial solution, precalculating the sum since the begining doesn't allow to update a item (you have to do O(n) work to keep up).
Fenwick Trees allow you to update and query in O(log n), and how it works is really cool and simple. It's really well explained in Fenwick's original paper, freely available here:
http://www.cs.ubc.ca/local/reading/proceedings/spe91-95/spe/vol24/issue3/spe884.pdf
Its father, the RQM tree is also very cool: It allows you to keep info about the minimum element between two indexes of the vector, and it also works in O(log n) update and query. I like to teach first the RQM and then the Fenwick Tree.
Van Emde-Boas trees [1]. I have even a C++ implementation [2] of it, for up to 2^20 integers.
[1] http://en.wikipedia.org/wiki/Van_Emde_Boas_treeNested sets [1] are nice for representing trees in the relational databases and running queries on them. For instance, ActiveRecord (Ruby on Rails' default ORM) comes with a very simple nested set plugin [2], which makes working with trees trivial.
[1] http://en.wikipedia.org/wiki/Nested_set_modelIt's pretty domain-specific, but half-edge data structure [1] is pretty neat. It provides a way to iterate over polygon meshes (faces and edges) which is very useful in computer graphics and computational geometry.
[1] http://www.flipcode.com/archives/The_Half-Edge_Data_Structure.shtmlScapegoat trees. A classic problem with plain binary trees is that they become unbalanced (e.g. when keys are inserted in ascending order.)
Balanced binary trees (AKA AVL trees) waste a lot of time balancing after each insertion.
Red-Black trees stay balanced, but require a extra bit of storage for each node.
Scapegoat trees stay balanced like red-black trees, but don't require ANY additional storage. They do this by analyzing the tree after each insertion, and making minor adjustments. See http://en.wikipedia.org/wiki/Scapegoat_tree.
An unrolled linked list [1] is a variation on the linked list which stores multiple elements in each node. It can drastically increase cache performance, while decreasing the memory overhead associated with storing list metadata such as references. It is related to the B-tree.
record node {
node next // reference to next node in list
int numElements // number of elements in this node, up to maxElements
array elements // an array of numElements elements, with space allocated for maxElements elements
}
[1] http://en.wikipedia.org/wiki/Unrolled_linked_list2-3 Finger Trees [1] by Hinze and Paterson [2] are a great functional data structure swiss-army knife with great asymptotics for a wide range of operations. While complex, they are much simpler than the imperative structures by Persistent lists with catenation via recursive slow-down [3] by Kaplan and Tarjan that preceded them.
They work as a catenable deque with O(1)
access to either end, O(log min(n,m))
append, and provide O(log min(n,length - n))
indexing with direct access to a monoidal prefix sum over any portion of the sequence.
Implementations exist in Haskell [4], Coq [5], F# [6], Scala [7], Java [8], C [9], Clojure [10], C# [11] and other languages.
You can use them to implement priority search queues [12], interval maps [13], ropes with fast head access [14], maps, sets, catenable sequences [15] or pretty much any structure where you can phrase it as collecting a monoidal [16] result over a quickly catenable/indexable sequence.
I also have some slides [17] describing their derivation and use.
[1] http://en.wikipedia.org/wiki/Finger_treePairing heaps [1] are a type of heap data structure with relatively simple implementation and excellent practical amortized performance.
[1] http://en.wikipedia.org/wiki/Pairing_heapOne lesser known, but pretty nifty data structure is the Fenwick Tree [1] (also sometimes called a Binary Indexed Tree [2] or BIT). It stores cumulative sums and supports O(log(n)) operations. Although cumulative sums might not sound very exciting, it can be adapted to solve many problems requiring a sorted/log(n) data structure.
IMO, its main selling point is the ease with which can be implemented [3]. Very useful in solving algorithmic problems that would involve coding a red-black/avl tree otherwise.
[1] http://en.wikipedia.org/wiki/Fenwick_treeI really really love Interval Trees [1]. They allow you to take a bunch of intervals (ie start/end times, or whatever) and query for which intervals contain a given time, or which intervals were "active" during a given period. Querying can be done in O(log n) and pre-processing is O(n log n).
[1] http://en.wikipedia.org/wiki/Interval_treeXOR Linked List [1] uses two XOR'd pointers to lessen the storage requirements for doubly-linked list. Kind of obscure but neat!
[1] http://en.wikipedia.org/wiki/XOR_linked_listSplash Tables [1] are great. They're like a normal hash table, except they guarantee constant-time lookup and can handle 90% utilization without losing performance. They're a generalization of the Cuckoo Hash [2] (also a great data structure). They do appear to be patented [3], but as with most pure software patents I wouldn't worry too much.
[1] http://crpit.com/confpapers/CRPITV91Askitis.pdfEnhanced hashing algorithms are quite interesting. Linear hashing [1] is neat, because it allows splitting one "bucket" in your hash table at a time, rather than rehashing the entire table. This is especially useful for distributed caches. However, with most simple splitting policies, you end up splitting all buckets in quick succession, and the load factor of the table oscillates pretty badly.
I think that spiral hashing [2] is really neat too. Like linear hashing, one bucket at a time is split, and a little less than half of the records in the bucket are put into the same new bucket. It's very clean and fast. However, it can be inefficient if each "bucket" is hosted by a machine with similar specs. To utilize the hardware fully, you want a mix of less- and more-powerful machines.
[1] http://en.wikipedia.org/wiki/Linear_hashBinary decision diagram [1] is one of my favorite data structures, or in fact Reduced Ordered Binary Decision Diagram (ROBDD).
These kind of structures can for instance be used for:
Note that many problems can be represented as a boolean expression. For instance the solution to a suduku can be expressed as a boolean expression. And building a BDD for that boolean expression will immediately yield the solution(s).
[1] http://en.wikipedia.org/wiki/Binary_decision_diagramThe Region Quadtree
(quoted from Wikipedia [1])
The region quadtree represents a partition of space in two dimensions by decomposing the region into four equal quadrants, subquadrants, and so on with each leaf node containing data corresponding to a specific subregion. Each node in the tree either has exactly four children, or has no children (a leaf node).
Quadtrees like this are good for storing spatial data, e.g. latitude and longitude or other types of coordinates.
This was by far my favorite data structure in college. Coding this guy and seeing it work was pretty cool. I highly recommend it if you're looking for a project that will take some thought and is a little off the beaten path. Anyway, it's a lot more fun than the standard BST derivatives that you're usually assigned in your data structures class!
In fact, as a bonus, I've found the notes from the lecture leading up to the class project (from Virginia Tech) here (pdf warning) [2].
[1] http://en.wikipedia.org/wiki/Quadtree#The_region_quadtreeI like treaps - for the simple, yet effective idea of superimposing a heap structure with random priority over a binary search tree in order to balance it.
Counted unsorted balanced btrees.
Perfect for text editor buffers.
http://www.chiark.greenend.org.uk/~sgtatham/algorithms/cbtree.html
Fast Compact tries:
Judy arrays [1]: Very fast and memory efficient ordered sparse dynamic arrays for bits, integers and strings. Judy arrays are faster and more memory efficient than any binary-search-tree.
HAT-trie: A Cache-conscious Trie-based Data Structure for Strings [2]
I sometimes use Inversion LIsts to store ranges, and they are often used to store character classes in regular expressions. See for example http://www.ibm.com/developerworks/linux/library/l-cpinv.html
Another nice use case is for weighted random decisions. Suppose you have a list of symbols and associated probabilites, and you want to pick them at random according to these probabilities
a => 0.1 b => 0.5 c => 0.4
Then you do a running sum of all the probabilities:
(0.1, 0.6, 1.0)
This is your inversion list. You generate a random number between 0 and 1, and find the index of the next higher entry in the list. You can do that with a binary search, because it's sorted. Once you've got the index, you can look up the symbol in the original list.
If you have n
symbols, you have O(n) preparation time, and then O(log(n)) acess time for each randomly chosen symbol - independently of the distribution of weights.
A variation of inversion lists uses negative numbers to indicate the endpoint of ranges, which makes it easy to count how many ranges overlap at a certain point. See http://www.perlmonks.org/index.pl?node_id=841368 for an example.
Arne Andersson trees [1] are a simpler alternative to red-black trees, in which only right links can be red. This greatly simplifies maintenance, while keeping performance on par with red-black trees. The original paper gives a nice and short implementation [2] for insertion and deletion.
[1] http://en.wikipedia.org/wiki/Aa_treeDAWG [1]s are a special kind of Trie where similar child trees are compressed into single parents. I extended modified DAWGs and came up with a nifty data structure called ASSDAWG (Anagram Search Sorted DAWG). The way this works is whenever a string is inserted into the DAWG, it is bucket-sorted first and then inserted and the leaf nodes hold an additional number [2] indicating which permutations are valid if we reach that leaf node from root. This has 2 nifty advantages:
I like suffix tree [1] and arrays [2] for string processing, skip lists [3] for balanced lists and splay trees [4] for automatic balancing trees
[1] http://en.wikipedia.org/wiki/Suffix_treeTake a look at the sideways heap, presented by Donald Knuth.
http://stanford-online.stanford.edu/seminars/knuth/071203-knuth-300.asx
BK-Trees, or Burkhard-Keller Trees [1] are a tree-based data structure which can be used to quickly find near-matches to a string.
[1] http://blog.notdot.net/2007/4/Damn-Cool-Algorithms-Part-1-BK-TreesFenwick trees [1] (or binary indexed trees) are a worthy addition to ones toolkit. If you have an array of counters and you need to constantly update them while querying for cumulative counts (as in PPM compression), Fenwick trees will do all operations in O(log n) time and require no extra space. See also this topcoder tutorial [2] for a good introduction.
[1] http://en.wikipedia.org/wiki/Fenwick_treeZobrist Hashing [1] is a hash function generally used for representing a game board position (like in Chess) but surely has other uses. One nice things about it is that is can be incrementally updated as the board is updated.
[1] http://en.wikipedia.org/wiki/Zobrist_hashingSplay Trees are cool. They reorder themselves in a way that moves the most often queried elements closer to the root.
Getting away from all these graph structures, I just love the simple Ring-Buffer.
When properly implemented you can seriously reduce your memory footprint while maintaining performance and sometimes even improving it.
You can use a min-heap to find the minimum element in constant time, or a max-heap to find the the maximum element. But what if you wanted to do both operations? You can use a Min-Max [1] to do both operations in constant time. It works by using min max ordering: alternating between min and max heap comparison between consecutive tree levels.
[1] http://www.cs.otago.ac.nz/staffpriv/mike/Papers/MinMaxHeaps/MinMaxHeaps.pdfB* tree [1]
It's a variety of B-tree that is efficient for searching at the cost of a more expensive insertion.
[1] http://en.wikipedia.org/wiki/B*Per the Bloom Filter mentions, Deletable Bloom Filters (DlBF) are in some ways better than basic counting variants. See http://arxiv.org/abs/1005.0352
Skip lists are actually pretty awesome: http://en.wikipedia.org/wiki/Skip_list
Priority deque is cheaper than having to maintain 2 separate priority queues with different orderings. http://www.alexandria.ucsb.edu/middleware/javadoc/edu/ucsb/adl/middleware/PriorityDeque.html http://cphstl.dk/Report/Priority-deque/cphstl-report-2001-14.pdf
I think the FM-index [1] by Paolo Ferragina and Giovanni Manzini is really cool. Especially in bioinformatics. It's essentially a compressed full text index that utilizes a combination of a suffix array and a burrows-wheeler transform of the reference text. The index can be searched without decompressing the whole index.
[1] http://en.wikipedia.org/wiki/FM-indexQuite Easy to implement.
[1] http://en.wikipedia.org/wiki/Ternary_search_treeA queue implemented using 2 stacks is pretty space efficient (as opposed to using a linked list which will have at least a 1 extra pointer/reference overhead).
How to implement a queue using two stacks? [1]
This has worked well for me when the queues are huge. If I save 8 bytes on a pointer, it means that queues with a million entries save about 8MB of RAM.
[1] https://stackoverflow.com/questions/69192/using-stack-as-queueA proper string data structure. Almost every programmer settles for whatever native support that a language has for the structure and that's usually inefficient (especially for building strings, you need a separate class or something else).
The worst is treating a string as a character array in C and relying on the NULL byte for safety.
const char*
. Personally, I prefer the environments where I don't have to spend so much time converting strings from one type to another. - Niki
I personally find sparse matrix data structures to be very interesting. http://www.netlib.org/linalg/html_templates/node90.html
The famous BLAS libraries use these. And when you deal with linear systems that contain 100,000's of rows and columns, it becomes critical to use these. Some of these also resemble the compact grid (basically like a bucket-sorted grid) which is common in computer graphics. http://www.cs.kuleuven.be/~ares/publications/LD08CFRGRT/LD08CFRGRT.pdf
Also as far as computer graphics is concerned, MAC grids are somewhat interesting, but only because they're clever. http://www.seas.upenn.edu/~cis665/projects/Liquation_665_Report.pdf
Delta list/delta queue are used in programs like cron or event simulators to work out when the next event should fire. http://everything2.com/title/delta+list http://www.cs.iastate.edu/~cs554/lec_notes/delta_clock.pdf
Bucket Brigade
They are used extensively in Apache. Basically they are a linked list that loops around on itself in a ring. I am not sure if they are used outside of Apache and Apache modules but they fit the bill as a cool yet lesser known data structure. A bucket is a container for some arbitrary data and a bucket brigade is a collection of buckets. The idea is that you want to be able to modify and insert data at any point in the structure.
Lets say that you have a bucket brigade that contains an html document with one character per bucket. You want to convert all the <
and >
symbols into <
and >
entities. The bucket brigade allows you to insert some extra buckets in the brigade when you come across a <
or >
symbol in order to fit the extra characters required for the entity. Because the bucket brigade is in a ring you can insert backwards or forwards. This is much easier to do (in C) than using a simple buffer.
Some reference on bucket brigades below:
Apache Bucket Brigade Reference [1]
Introduction to Buckets and Brigades [2]
[1] http://apr.apache.org/docs/apr/trunk/group___a_p_r___util___bucket___brigades.htmlA corner-stitched data structure [1]. From the summary:
[1] http://www.eecs.berkeley.edu/Pubs/TechRpts/1983/6352.htmlCorner stitching is a technique for representing rectangular two-dimensional objects. It appears to be especially well-suited for interactive editing systems for VLSI layouts. The data structure has two important features: first, empty space is represented explicitly; and second, rectangular areas are stitched together at their corners like a patchwork quilt. This organization results in fast algorithms (linear time or better) for searching, creation, deletion, stretching, and compaction. The algorithms are presented under a simplified model of VLSI circuits, and the storage requirements of the structure are discussed. Measurements indicate that corner stitching requires approximately three times as much memory space as the simplest possible representation.
Burrows–Wheeler transform [1] (block-sorting compression)
Its essential algorithm for compression. Let say that you want to compress lines on text files. You would say that if you sort the lines, you lost information. But BWT works like this - it reduces entropy a lot by sorting input, keeping integer indexes to recover the original order.
[1] http://en.wikipedia.org/wiki/Burrows%E2%80%93Wheeler_transformPATRICIA - Practical Algorithm to Retrieve Information Coded in Alphanumeric, D.R.Morrison (1968).
A PATRICIA tree is related to a Trie. The problem with Tries is that when the set of keys is sparse, i.e. when the actual keys form a small subset of the set of potential keys, as is very often the case, many (most) of the internal nodes in the Trie have only one descendant. This causes the Trie to have a high space-complexity.
http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Tree/PATRICIA/
I am not sure if this data structure has a name, but the proposed
tokenmap
[1] data structure for inclusion into Boost is kind of interesting. It is a dynamically resizable map where look-ups are not only O(1), they are simple array accesses. I wrote most of the
background material
[2] on this data structure which describes the fundamental principle behind how it works.
Something like a tokenmap is used by operating systems to map file or resource handles to data structures representing the file or resource.
[1] http://svn.boost.org/svn/boost/sandbox/tokenmap/libs/tokenmap/doc/html/index.htmlDisjoint Set Forests [1] allow fast membership queries and union operations and are most famously used in Kruskal's Algorithm [2] for minimum spanning trees.
The really cool thing is that both operations have amortized running time proportional to the inverse of the Ackermann Function [3], making this the "fastest" non-constant time data structure.
[1] http://en.wikipedia.org/wiki/Disjoint-set_data_structureBinomial heap [1]'s have a lot of interesting properties, most useful of which is merging.
[1] http://en.wikipedia.org/wiki/Binomial_heapEnvironment tracking recursive structures.
Compilers use a structure that is recursive but not like a tree. Inner scopes have a pointer to an enclosing scope so the nesting is inside-out. Verifying whether a variable is in scope is a recursive call from the inside scope to the enclosing scope.
public class Env
{
HashMap<String, Object> map;
Env outer;
Env()
{
outer = null;
map = new HashMap();
}
Env(Env o)
{
outer = o;
map = new HashMap();
}
void put(String key, Object value)
{
map.put(key, value);
}
Object get(String key)
{
if (map.containsKey(key))
{
return map.get(key);
}
if (outer != null)
{
return outer.get(key);
}
return null;
}
Env push()
{
return new Env(this);
}
Env pop()
{
return outer;
}
}
I'm not sure if this structure even has a name. I call it an inside-out list.
Stack<HashMap<String,SymbolInformation>>
for this, and one usually makes one pass through the AST, pushing and popping the stack as various scopes are encountered, and updating the hashes as new variables are added. If one really does want to keep the data structure around for lots of different branches of the tree at once, one uses a list in the Lisp sense, where the list nodes are immutable, and the later nodes in the list are shared by multiple lists. - Ken Bloom
There is a clever Data-structure out there that uses Arrays to save the Data of the Elements, but the Arrays are linked together in an Linked-List/Array.
This does have the advantage that the iteration over the elements is very fast (faster than a pure linked-list approach) and the costs for moving the Arrays with the Elements around in Memory and/or (de-)allocation are at a minimum. (Because of this this data-structure is usefull for Simulation stuff).
I know about it from here:
http://software.intel.com/en-us/blogs/2010/03/26/linked-list-verses-array/
"...and that an additional array is allocated and linked in to the cell list of arrays of particles. This is similar in some respects to how TBB implemented its concurrent container."(it is about ther Performance of Linked Lists vs. Arrays)
Someone else already proposed Burkhard-Keller-Trees, but I thought I might mention them again in order to plug my own implementation. :)
http://well-adjusted.de/mspace.py/index.html
There are faster implementations around (see ActiveState's Python recipes or implementations in other languages), but I think/hope my code helps to understand these data structures.
By the way, both BK and VP trees can be used for much more than searching for similar strings. You can do similarity searches for arbitrary objects as long as you have a distance function that satisfies a few conditions (positivity, symmetry, triangle inequality).
I had good luck with WPL Trees [1] before. A tree variant that minimizes the weighted path length of the branches. Weight is determined by node access, so that frequently-accessed nodes migrate closer to the root. Not sure how they compare to splay trees, as I've never used those.
[1] http://comjnl.oxfordjournals.org/cgi/content/short/34/5/444Half edge data structure [1] and winged edge [2] for polygonal meshes.
Useful for computational geometry algorithms.
[1] http://www.cgafaq.info/wiki/Half_edge_generalI think Cycle Sort [1] is a pretty neat sorting algorithm.
It's a sorting algorithm used to minimize the total number of writes. This is particularly useful when you're dealing with flash memory where the life-span of the flash memory is proportional to the amount of writes. Here is the Wikipedia article [2], but I recommend going to the first link. (nice visuals!)
[1] http://corte.si/posts/code/cyclesort/index.htmlThese are the ones i can come to think of. There are even more on wikipedia about data structures [1]
[1] http://en.wikipedia.org/wiki/Category:Data_structuresRight-angle triangle networks (RTINs) [1]
Beautifully simple way to adaptively subdivide a mesh. Split and merge operations are just a few lines of code each.
[1] http://geoinformatics.fsv.cvut.cz/gwiki/Modern_Algorithms_for_Real-Time_Terrain_Visualization_on_Commodity_Hardware#RTINI stumbled on another data structure Cartesian Tree [1] when i read about some algorithms related to RMQ and LCA. In a cartesian tree, the lowest common ancestor between two nodes is the minimum node between them. It is useful to convert a RMQ problem to LCA.
[1] http://en.wikipedia.org/wiki/Cartesian_tree