Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
courses:cs211:winter2012:journals:virginia:chapter3 [2012/01/30 01:27] – created lovellvcourses:cs211:winter2012:journals:virginia:chapter3 [2012/02/16 03:06] (current) lovellv
Line 5: Line 5:
 ===== Section 1: Basic Definitions and Applications ===== ===== Section 1: Basic Definitions and Applications =====
  
-//graph// consists of a collection of nodes (V) and edges (E).  //Directed graphs// have "one-way" edges to indicate asymmetric relationships while //undirected graphs// have "two-way" edges to indicate symmetric relationships.  Some examples of graphs include transportation, communication, information and social networks. +**graph** consists of a collection of nodes (V) and edges (E).  **Directed graphs** have "one-way" edges to indicate asymmetric relationships while **undirected graphs** have "two-way" edges to indicate symmetric relationships.  Some examples of graphs include transportation, communication, information and social networks. 
  
-//path// in a graph is a sequence of nodes where each consecutive pair is connected by an edge.  A path is //simple// if all the vertices are distinct.  A path is a //cycle// if the first and last node are the same.  We say a graph is //connected// if there is a path from one node to every other.  The //distance// from one node to another is the length of the shortest path between them, measured in number of edges.+**path** in a graph is a sequence of nodes where each consecutive pair is connected by an edge.  A path is **simple** if all the vertices are distinct.  A path is a **cycle** if the first and last node are the same.  We say a graph is **connected** if there is a path from one node to every other.  The **distance** from one node to another is the length of the shortest path between them, measured in number of edges.
  
-A graph is a //tree// if it is connected and does not contain a cycle.  Trees represent hierarchies.  +A graph is a **tree** if it is connected and does not contain a cycle.  Trees represent hierarchies.  
  
 Theorem: Any two of the following imply the third (i) G is connected, (ii) G does not contain a cycle, (iii) G has n-1 edges    Theorem: Any two of the following imply the third (i) G is connected, (ii) G does not contain a cycle, (iii) G has n-1 edges   
Line 18: Line 18:
 ===== Section 2: Graph Connectivity and Traversal ===== ===== Section 2: Graph Connectivity and Traversal =====
  
-This section explains how to express the growth rate of running times.+In this section, we want to determine if there is a path from node s to node t.  One way to do this is using Breadth First Search (BFS).  In BFS we find all the nodes connected to a given layer before moving on.  If we start at s, we know there is a path to t if t is in some layer j and that in this case, the distance from s to t is j.  We also know BFS produces a BFS tree, rooted at s and that if two nodes are connected by an edge, they will be at most one layer apart in the tree.  The set R produced by BFS is the connected component of G containing s 
  
-**Definitions of OΩand Θ** +Another way to determine if there is a path is using Depth First Search (DFS).  DFS follows a path until it reaches a dead-end and then backtracks.  DFS visits the same nodes as BFSbut in a different order.  It produces a DFS tree rooted at s that tends to be narrow.  If two nodes are connected in our graphthen one is ancestor of the other in the DFS tree.  
  
-Upper bounds: T(n) is O(f(n)) if T is bounded above by a constant multiple of fthat is T(n)<= c*f(n) eventually.+Both BFS and DFS produce the connected component containing s.  It is useful to recognize that for two nodestheir connected components are either identical or disjoint 
  
-Lower boundsT(n) is Ω(f(n)) if T is bounded below by a multiple of f, that is T(n)>= e*f(n) eventually.+Readability8
  
-Tight boundsT(n) is Θ(f(n)) if T is O(f(n)) and Ω(f(n)).+===== Section 3Graph Traversal using Queues and Stacks =====
  
-**Properties of O, Ω, and Θ**+Now we need to implement graphsDFS and BFS.  Graphs can be implemented as an adjacency matrix or an adjacency list.  The adjacency matrix representation requires O(n^2) space while the adjacency list representation requires only O(m+n) space.
  
-Transitivity: If f is O(g) and g is O(h)then f is O(h).  This property also holds for lower and tight bounds.+We can use stacks and queues to help implement BFS and DFS.  Queues support first in first out access.  Stacks support last in first out access.  For BFSwe can manage each list of the nodes on a layer as either a stack or a queue.  BFS runs in O(m+ntime.  In DFS, we need to use a stack to process the nodes since we will need to backtrack.  DFS also runs in O(m+n) time.
  
-Sums of FunctionsIf i is an integer, f1, f2, ..., fi, h are functions and each fi = O(h), then f1 + f2 + ... + fi = O(h)  +Readability8
  
-**Common Functions**+===== Section 4: Testing Bipartiteness: An Application of BFS =====
  
-Polynomial, logarithmic and exponential functions are commonly seen.  A polynomial's rate of growth is determined by its highest order term.  log n is bounded by every function n^x as long as x>0 Every exponential grows faster than every polynomial.  +We can use BFS to test whether a graph is bipartite.  Recall, a graph is bipartite if you can color its nodes red and blue so every edge has one red end and one blue end.
  
-Readability: 7+To see if a graph is bipartite, we will pick a node to start and color it red.  Then, we will color all of its neighboring nodes (layer 1) blue and all those node's neighbors (layer 2) red, etc.  This is exactly like BFS, except with an extra color array.    
  
-===== Section 3: Graph Traversal using Queues and Stacks =====+Note that if there is no edge of G joining two nodes in the same layer, then G is bipartite.  If there is an edge of edge of G joining two nodes of the same layer, G contains an odd length cycle and is not bipartite.  
  
-===== Section 4Testing Bipartiteness: An Application of BFS =====+Readability8     
  
 ===== Section 5: Connectivity in Directed Graphs ===== ===== Section 5: Connectivity in Directed Graphs =====
  
 +In this section, we begin to consider directed graphs.  We represent directed graphs with two adjacency lists - one of the nodes //to// which s has edges and one of the nodes //from// which it has edges.  
 +
 +BFS and DFS are almost the same as in undirected graphs.  Both discover the set of nodes reachable from s, but in directed graphs, it is not guaranteed that we can get back to s from these nodes.  If there is a path from s to t and from t to s, then we say s and t are **mutually reachable**.  We say a directed graph is **strongly connected** if every pair of nodes are mutually reachable.
 +
 +The **strong component** containing s in a directed graph is the set of all v such that s and v are mutually reachable.  The strong component is similar to the connected component for an undirected graph.  Like the connected component, strong components are either identical or disjoint.
 +
 +Readability:
 +
 +===== Section 6: Directed Acyclic Graphs and Topological Orderings =====
 +
 +A special type of directed graph that contains no cycles is a **directed acyclic graph** (DAG).  DAGs can be used to represent precedence relations or dependencies.  One natural problem relating to DAGs is how to create a **topological ordering** (an ordering in which all edges point forward) from a DAG.  This is the equivalent to finding the order in which we may do tasks which depend on each other.  It is easy to see if a graph has a topological ordering, it is a DAG, but it is not obvious every DAG has a topological ordering.  
 +
 +In fact, every DAG does have a topological ordering. We can find it by finding a node with no incoming edges, ordering it next in our topological ordering, deleting it from our graph, and repeating until we have added every node.  This algorithm has O(m+n) run time. (p 103)
  
 +Readability: 8       
 +       
courses/cs211/winter2012/journals/virginia/chapter3.1327886837.txt.gz · Last modified: 2012/01/30 01:27 by lovellv
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0