<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.omnivision.website/index.php?action=history&amp;feed=atom&amp;title=4.1.2.2_Graphs_%28Directed%2C_Undirected%2C_Weighted%29</id>
	<title>4.1.2.2 Graphs (Directed, Undirected, Weighted) - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.omnivision.website/index.php?action=history&amp;feed=atom&amp;title=4.1.2.2_Graphs_%28Directed%2C_Undirected%2C_Weighted%29"/>
	<link rel="alternate" type="text/html" href="https://wiki.omnivision.website/index.php?title=4.1.2.2_Graphs_(Directed,_Undirected,_Weighted)&amp;action=history"/>
	<updated>2026-06-10T07:05:30Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.omnivision.website/index.php?title=4.1.2.2_Graphs_(Directed,_Undirected,_Weighted)&amp;diff=214&amp;oldid=prev</id>
		<title>Mr. Goldstein: Created page with &quot;=== 4.1.2.2 Graphs: Connecting Everything === Imagine a map of cities with roads connecting them, or a social media network where people are connected by friendships. A &#039;&#039;&#039;graph&#039;&#039;&#039; in computer science is a way to represent these kinds of connections! It&#039;s made up of:  * &#039;&#039;&#039;Nodes (or Vertices):&#039;&#039;&#039; These are the &quot;dots&quot; or &quot;points&quot; in the graph, representing things like cities, people, or web pages. * &#039;&#039;&#039;Edges:&#039;&#039;&#039; These are the &quot;lines&quot; or &quot;connections&quot; between the nodes, re...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.omnivision.website/index.php?title=4.1.2.2_Graphs_(Directed,_Undirected,_Weighted)&amp;diff=214&amp;oldid=prev"/>
		<updated>2025-07-09T15:35:35Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;=== 4.1.2.2 Graphs: Connecting Everything === Imagine a map of cities with roads connecting them, or a social media network where people are connected by friendships. A &amp;#039;&amp;#039;&amp;#039;graph&amp;#039;&amp;#039;&amp;#039; in computer science is a way to represent these kinds of connections! It&amp;#039;s made up of:  * &amp;#039;&amp;#039;&amp;#039;Nodes (or Vertices):&amp;#039;&amp;#039;&amp;#039; These are the &amp;quot;dots&amp;quot; or &amp;quot;points&amp;quot; in the graph, representing things like cities, people, or web pages. * &amp;#039;&amp;#039;&amp;#039;Edges:&amp;#039;&amp;#039;&amp;#039; These are the &amp;quot;lines&amp;quot; or &amp;quot;connections&amp;quot; between the nodes, re...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=== 4.1.2.2 Graphs: Connecting Everything ===&lt;br /&gt;
Imagine a map of cities with roads connecting them, or a social media network where people are connected by friendships. A &amp;#039;&amp;#039;&amp;#039;graph&amp;#039;&amp;#039;&amp;#039; in computer science is a way to represent these kinds of connections! It&amp;#039;s made up of:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Nodes (or Vertices):&amp;#039;&amp;#039;&amp;#039; These are the &amp;quot;dots&amp;quot; or &amp;quot;points&amp;quot; in the graph, representing things like cities, people, or web pages.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Edges:&amp;#039;&amp;#039;&amp;#039; These are the &amp;quot;lines&amp;quot; or &amp;quot;connections&amp;quot; between the nodes, representing roads, friendships, or links between web pages.&lt;br /&gt;
&lt;br /&gt;
Graphs are super useful for showing how different things are related to each other.&lt;br /&gt;
&lt;br /&gt;
==== Directed Graphs ====&lt;br /&gt;
In a &amp;#039;&amp;#039;&amp;#039;directed graph&amp;#039;&amp;#039;&amp;#039;, the connections (edges) have a specific direction, like one-way streets. An arrow usually shows the direction. If there&amp;#039;s an arrow from Node A to Node B, it means you can go from A to B, but not necessarily from B to A.&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Example:&amp;#039;&amp;#039;&amp;#039; A map of one-way streets, or links between web pages (you can click a link from page A to page B, but page B might not link back to page A).&lt;br /&gt;
&lt;br /&gt;
==== Undirected Graphs ====&lt;br /&gt;
In an &amp;#039;&amp;#039;&amp;#039;undirected graph&amp;#039;&amp;#039;&amp;#039;, the connections (edges) don&amp;#039;t have a specific direction. They&amp;#039;re like two-way streets. If Node A is connected to Node B, it means you can go both ways between them.&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Example:&amp;#039;&amp;#039;&amp;#039; A social media friendship: if you&amp;#039;re friends with someone, they&amp;#039;re also friends with you.&lt;br /&gt;
&lt;br /&gt;
==== Weighted Graphs ====&lt;br /&gt;
In a &amp;#039;&amp;#039;&amp;#039;weighted graph&amp;#039;&amp;#039;&amp;#039;, each connection (edge) has a number attached to it, called a &amp;quot;weight.&amp;quot; This weight can represent things like distance, time, or cost.&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Example:&amp;#039;&amp;#039;&amp;#039; A map where the roads (edges) have numbers showing how long it takes to drive on them, or how far apart the cities are. This helps find the shortest or fastest path.&lt;br /&gt;
&lt;br /&gt;
==== Bibliography for Graphs ====&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Masai School:&amp;#039;&amp;#039;&amp;#039; [https://www.masaischool.com/blog/graph-data-structure-explained-with-examples/ Graph Data Structure - Explained With Examples]&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Math Insight:&amp;#039;&amp;#039;&amp;#039; [https://mathinsight.org/definition/directed_graph Directed graph definition]&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;CodeChef:&amp;#039;&amp;#039;&amp;#039; [https://www.codechef.com/learn/course/graphs/GRAPHTYPES/problems/GRAPHTYPE1 Graph Types - Undirected and Directed]&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Medium (by Vaidehi Joshi):&amp;#039;&amp;#039;&amp;#039; [https://www.codechef.com/learn/course/graphs/GRAPHTYPES/problems/GRAPHTYPE1 Finding The Shortest Path, With A Little Help From Dijkstra]&lt;/div&gt;</summary>
		<author><name>Mr. Goldstein</name></author>
	</entry>
</feed>