Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
courses:cs211:winter2012:journals:virginia:chapter3 [2012/01/30 01:27] – created lovellv | courses: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 ===== | ||
- | A //graph// consists of a collection of nodes (V) and edges (E). | + | A **graph** consists of a collection of nodes (V) and edges (E). |
- | A //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** 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 graph is a //tree// if it is connected and does not contain a cycle. | + | A graph is a **tree** if it is connected and does not contain a cycle. |
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 | + | 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). |
- | **Definitions of O, Ω, and Θ** | + | Another way to determine if there is a path is using Depth First Search (DFS). |
- | Upper bounds: T(n) is O(f(n)) if T is bounded above by a constant multiple of f, that 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 nodes, their connected components are either identical or disjoint. |
- | Lower bounds: T(n) is Ω(f(n)) if T is bounded below by a multiple of f, that is T(n)>= e*f(n) eventually. | + | Readability: 8 |
- | Tight bounds: T(n) is Θ(f(n)) if T is O(f(n)) | + | ===== Section 3: Graph Traversal using Queues |
- | **Properties of O, Ω, and Θ** | + | Now we need to implement graphs, DFS 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: | + | We can use stacks |
- | Sums of Functions: If i is an integer, f1, f2, ..., fi, h are functions and each fi = O(h), then f1 + f2 + ... + fi = O(h) | + | Readability: 8 |
- | **Common Functions** | + | ===== Section 4: Testing Bipartiteness: |
- | Polynomial, logarithmic and exponential functions are commonly seen. | + | We can use BFS to test whether a graph is bipartite. |
- | Readability: | + | 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 | + | Note that if there is no edge of G joining two nodes in the same layer, then G is bipartite. |
- | ===== Section 4: Testing Bipartiteness: | + | Readability: 8 |
===== Section 5: Connectivity in Directed Graphs ===== | ===== Section 5: Connectivity in Directed Graphs ===== | ||
+ | In this section, we begin to consider directed graphs. | ||
+ | |||
+ | BFS and DFS are almost the same as in undirected graphs. | ||
+ | |||
+ | The **strong component** containing s in a directed graph is the set of all v such that s and v are mutually reachable. | ||
+ | |||
+ | 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). | ||
+ | |||
+ | 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: | ||
+ |