Graphes
Graphes, also called graphs in English, are a mathematical structure consisting of a set of vertices (or nodes) and a set of edges that connect pairs of vertices. Edges may be undirected, indicating a bidirectional relation, or directed, giving an orientation and forming a digraph. In weighted graphs, edges carry a numerical weight representing cost, length, or capacity. If no edge connects a pair of vertices more than once and a vertex has no loop, the graph is simple; general graphs may include multiple edges or loops (multigraphs and pseudographs).
Graphs are commonly represented in two ways: adjacency matrices and adjacency lists. An adjacency matrix is
Core concepts include paths, walks, trails, and cycles. A graph is connected if there is a path
Applications and subareas are broad, covering matching, flow, routing, and network design, as well as isomorphism,
Historically, graph theory emerged from Euler’s solution to the Königsberg bridges problem, laying the groundwork for