|
In computer science and software engineering, a Judy array is a complex but very fast associative array data structure for storing and looking up values using integer or string keys. Unlike arrays, Judy arrays may be sparse; that is, they may have large ranges of unassigned indices. Wikibooks Wikiversity has more about this subject: School of Computer Science Open Directory Project: Computer Science Downloadable Science and Computer Science books Collection of Computer Science Bibliographies Belief that title science in computer science is inappropriate Categories: | ...
Software engineering (SE) is the profession that creates and maintains software applications by applying technologies and practices from computer science, project management, engineering, application domains and other fields. ...
In computing, an associative array, also known as a map, lookup table, or dictionary, is an abstract data type very closely related to the mathematical concept of a function with a finite domain. ...
A binary tree, a simple type of branching linked data structure. ...
In computer programming, an array, also known as a vector or list, is one of the simplest data structures. ...
Judy arrays are designed to keep the number of processor cache-line fills as low as possible, and the algorithm is internally complex in an attempt to satisfy this goal as often as possible. Due to these cache optimizations, Judy arrays are fast, sometimes even faster than a hash table. This article or section should be merged with CPU cache. ...
In computer science, a hash table is a data structure that speeds up searching for information by a particular aspect of that information, called a key. ...
Roughly speaking, the data structure's designer describes it as similar to a highly-optimised 256-ary trie data structure. A trie for keys to, tea, ten, in, inn. In computer science, a trie is an ordered tree data structure that is used to store an associative array where the keys are strings. ...
This article is a stub. You can help Wikipedia by expanding it. External links |