DAA
DAA
nodes or vertices of the graph and the edges of the graph. An edge specifies
which nodes have a connection between them.
A complete graph is a graph with an edge between every pair of nodes. If there
are N nodes, there will be (N^2 - N) / 2 edges in a complete graph without
loop edges.
A subgraph (Vs, Es) of a graph or digraph (V, E) is one that has a subset of
the vertices (Vs ⊆V) and edges (Es ⊆ E) of the full graph.
A weighted graph or digraph is one where each edge has a value, called the
weight, associated with it. In graph drawings, the weight will be written near
the edge.
From a hardware perspective, this describes a computer system where all processors
can directly access the same physical memory, usually through a shared connection
like a bus.
From a programming perspective, it means all parallel tasks (or threads) see the
same memory space and can work on the same memory locations, no matter where the
actual memory is located in the hardware.