Examples of using A data structure in English and their translations into Russian
{-}
-
Official
-
Colloquial
What is a Data Structure Definition?
OEM(Object Exchange Model) was created prior to XML as a means of self-describing a data structure.
The abstract syntax tree of a function may be composed and manipulated as a data structure in the meta layer, and then evaluated.
There is a data structure in program code that might cause inefficient use of memory.
In a homoiconic language, the primary representation of programs is also a data structure in a primitive type of the language itself.
In most compiled programs,this local state is stored on the call stack in a data structure called a stack frame or activation record.
There is a data structure consisting of several fields:a 64-bit double, 8 unsigned char, and one 32-bit int.
The Data Set produced by the Exchange Channel will be stored in a Data Resource and structured by a Data Structure.
He suggested that a schema is a data structure for representing generic concepts stored in memory.
A data structure definition specifies a set of concepts which describe and identify a set of data. .
A Data Structure describes the structure of a Data Set by means of Data Structure Components Identifier Components, Measure Components and Attribute Components.
In order to be able to exchange and understand data, a Data Structure Definition tells us about the relevant dimensions and what the possible values for each dimension are.
A data structure for representing the modular decomposition tree should support the operation that inputs a node and returns the set of vertices of G{\displaystyle G} that the node represents.
In Maple, a vector is a special case of a table and therefore a data structure, but a list(which gets rendered and can be indexed in exactly the same way) is a value.
Libavl provides a large collection of binary search tree and balanced tree routines for C. These trees offer at least O(log n) performance for usually costly operations such as searching, inserting ordeleting items from a data structure.(doc).
This information is stored in a data structure called a rollback segment(after an analogous data structure in Oracle).
The benefit of this optimistic approach is increased concurrency: no thread needs to wait for access to a resource, and different threads can safely andsimultaneously modify disjoint parts of a data structure that would normally be protected under the same lock.
In a case where the maximum allowed address offset for a data structure is in memory, it can takea large number of processor cycles for the processor to obtain the maximum allowed address.
The reason for passing a reference is often that the language technically does not provide a value representation of complicated data, butinstead represents them as a data structure while preserving some semblance of value appearance in the source code.
Vertex addition methods work by maintaining a data structure representing the possible embeddings of an induced subgraph of the given graph, and adding vertices one at a time to this data structure. .
If the input is given as a subroutine for calculating f, the cycle detection problem may be trivially solved using onlyλ+ μ function applications, simply by computing the sequence of values xi and using a data structure such as a hash table to store these values and test whether each subsequent value has already been stored.
In the dictionary problem, a data structure should maintain a collection of key-value pairs subject to operations that insert or delete pairs from the collection or that search for the value associated with a given key.
The doubly connected edge list(DCEL), also known as half-edge data structure, is a data structure to represent an embedding of a planar graph in the plane, and polytopes in 3D.
A data structure constructed from the minimum spanning tree allows the minimax distance between any pair of vertices to be queried in constant time per query, using lowest common ancestor queries in a Cartesian tree.
It occurs whenever the same set of data occurs over and over again(for a data structure) or whenever the same group of actions is to occur over and over again for a processing structure. .
Using a data structure called dynamic trees, the running time of finding a blocking flow in each phase can be reduced to O( E log V){\displaystyle O(E\log V)} and therefore the running time of Dinic's algorithm can be improved to O( V E log V){\displaystyle OVE\log V.
Type systems that allow polymorphism generally do so in order to improve the potential for code re-use: in a language with polymorphism,programmers need only implement a data structure such as a list or an associative array once, rather than once for each type of element with which they plan to use it.