• A Sparse graph code is a code which is represented by a sparse graph. Any linear code can be represented as a graph, where there are two sets of nodes...
    1 KB (124 words) - 18:52, 12 August 2023
  • a flexible design method that is based on sparse Tanner graphs (specialized bipartite graphs). LDPC codes were originally conceived by Robert G. Gallager...
    36 KB (4,626 words) - 16:31, 22 June 2025
  • In graph theory, an expander graph is a sparse graph that has strong connectivity properties, quantified using vertex, edge or spectral expansion. Expander...
    41 KB (5,391 words) - 22:16, 19 June 2025
  • Thumbnail for Sparse matrix
    Pareto principle Ragged matrix Single-entry matrix Skyline matrix Sparse graph code Sparse file Harwell-Boeing file format Matrix Market exchange formats...
    25 KB (3,295 words) - 17:12, 16 July 2025
  • Outerplanar graph Random graph Regular graph Scale-free network Snark (graph theory) Sparse graph Sparse graph code Split graph String graph Strongly regular...
    7 KB (663 words) - 02:52, 24 September 2024
  • Gallager code, as the archetype for sparse graph codes LT code, which is a near-optimal rateless erasure correcting code (Fountain code) m of n codes Nordstrom-Robinson...
    40 KB (4,696 words) - 17:59, 30 July 2025
  • This is a list of algebraic coding theory topics....
    3 KB (9 words) - 23:09, 3 June 2023
  • These methods focus on the encoding of text as either dense or sparse vectors. Sparse vectors, which encode the identity of a word, are typically dictionary-length...
    24 KB (2,549 words) - 15:32, 16 July 2025
  • A graph database (GDB) is a database that uses graph structures for semantic queries with nodes, edges, and properties to represent and store data. A key...
    53 KB (4,715 words) - 16:22, 7 August 2025
  • this sense, planar graphs are sparse graphs, in that they have only O(v) edges, asymptotically smaller than the maximum O(v2). The graph K3,3, for example...
    36 KB (4,589 words) - 21:30, 18 July 2025
  • Thumbnail for Graph coloring
    In graph theory, graph coloring is a methodic assignment of labels traditionally called "colors" to elements of a graph. The assignment is subject to certain...
    70 KB (8,461 words) - 08:14, 6 August 2025
  • Thumbnail for GraphBLAS
    the language of linear algebra. GraphBLAS is built upon the notion that a sparse matrix can be used to represent graphs as either an adjacency matrix or...
    21 KB (1,838 words) - 12:22, 11 March 2025
  • In graph theory and computer science, an adjacency matrix is a square matrix used to represent a finite graph. The elements of the matrix indicate whether...
    20 KB (2,453 words) - 01:06, 8 August 2025
  • Thumbnail for Graph (abstract data type)
    science, a graph is an abstract data type that is meant to implement the undirected graph and directed graph concepts from the field of graph theory within...
    16 KB (1,835 words) - 11:46, 26 July 2025
  • Thumbnail for Dijkstra's algorithm
    Dijkstra's algorithm (category Graph algorithms)
    {\displaystyle \Theta (|E|+|V|^{2})=\Theta (|V|^{2})} . For sparse graphs, that is, graphs with far fewer than | V | 2 {\displaystyle |V|^{2}} edges, Dijkstra's...
    45 KB (5,638 words) - 02:33, 21 July 2025
  • model (EAV) is a data model optimized for the space-efficient storage of sparse—or ad-hoc—property or data values, intended for situations where runtime...
    66 KB (9,767 words) - 04:32, 15 June 2025
  • Thumbnail for Induced path
    Induced path (redirect from Graph hole)
    of the longest induced path in a graph has sometimes been called the detour number of the graph; for sparse graphs, having bounded detour number is equivalent...
    13 KB (1,486 words) - 07:48, 18 July 2024
  • problem in a weighted, directed graph Johnson's algorithm: all pairs shortest path algorithm in sparse weighted directed graph Transitive closure problem:...
    72 KB (7,951 words) - 17:13, 5 June 2025
  • LU decomposition (category Articles with example C code)
    algorithms have been developed for factorizing large sparse matrices. These algorithms attempt to find sparse factors L and U. Ideally, the cost of computation...
    54 KB (8,681 words) - 11:27, 29 July 2025
  • Polyspace PVS-Studio SLAM project Sparse SonarQube Splint Understand Visual Studio Axivion Suite (Bauhaus) Code Dx CodeScene CodeQL Coverity Kiuwan Klocwork...
    39 KB (1,197 words) - 21:53, 9 August 2025
  • Thumbnail for Clique problem
    Clique problem (category Computational problems in graph theory)
    collection of graphs used as benchmarks for the challenge, which is publicly available. Planar graphs, and other families of sparse graphs, have been discussed...
    84 KB (9,905 words) - 16:01, 10 July 2025
  • concise code that is easy to understand and debug, while being well suited for irregular algorithms, such as algorithms on trees, graphs or sparse matrices...
    3 KB (263 words) - 13:19, 29 November 2024
  • Thumbnail for Feature learning
    Coates and Ng note that certain variants of k-means behave similarly to sparse coding algorithms. In a comparative evaluation of unsupervised feature learning...
    45 KB (5,114 words) - 09:22, 4 July 2025
  • in advance Sparse conditional constant propagation – range-check some values, allowing tests to predict the most likely branch Dead-code elimination...
    33 KB (4,002 words) - 14:53, 16 July 2025
  • and graph theory. He is a professor of mathematics at the University of Haifa. He is a recipient of the Nerode Prize for his work on color-coding,[A]...
    4 KB (298 words) - 01:43, 3 June 2025
  • Lowest common ancestor (category Trees (graph theory))
    on trees, preprocess a graph to enable constant-time LCA queries. The problem of LCA existence can be solved optimally for sparse DAGs by means of an O(|V||E|)...
    24 KB (2,990 words) - 11:48, 27 July 2025
  • propagation known as sparse conditional constant propagation can more accurately propagate constants and simultaneously remove dead code. Constant folding...
    6 KB (765 words) - 22:25, 4 May 2025
  • Discrete Laplace operator (category Graph theory)
    operator, defined so that it has meaning on a graph or a discrete grid. For the case of a finite-dimensional graph (having a finite number of edges and vertices)...
    34 KB (5,716 words) - 02:52, 22 July 2025
  • Sparse distributed memory (SDM) is a mathematical model of human long-term memory introduced by Pentti Kanerva in 1988 while he was at NASA Ames Research...
    56 KB (7,736 words) - 09:08, 27 May 2025
  • Parallel breadth-first search (category Graph algorithms)
    explore the vertices of a graph layer by layer. It is a basic algorithm in graph theory which can be used as a part of other graph algorithms. For instance...
    31 KB (4,465 words) - 03:21, 20 July 2025