Linked List Data structure with C++
linked list(LL) is a linear data structure that includes a series of connected nodes. Here, each node stores the data and the address of the next node. For example,
Graph Theory Graph Theory is ultimately the study of relationships. Given a set of nodes & connections, which can abstract anything from city layouts to computer data, graph theory provides a helpful tool to quantify & simplify the many moving parts of dynamic systems Weighted vs Unweighted Graph Weighted graphs add additional information to the relationship between two nodes. This is done by assigning a numeric value to the edge the line that connects the two nodes. This value could represent the distance or how two nodes are connected. A real world example of a weighted gra...
Comments
Post a Comment