Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapterthreesectioni [2012/01/30 22:54] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterthreesectioni [2012/01/30 23:46] (current) – mugabej | ||
---|---|---|---|
Line 6: | Line 6: | ||
===Paths and Connectivity=== | ===Paths and Connectivity=== | ||
+ | |||
+ | |||
+ | * A //path// in an undirected graph G = (V,E): A sequence P of nodes v< | ||
+ | * A //cycle//: a path v< | ||
+ | * An undirected graph is // | ||
+ | * // | ||
+ | * An undirected graph is a //tree// : If it's connected and doesn' | ||
+ | * A node w in a tree is a // | ||
+ | * A leaf node: a node that has no descendants. | ||
+ | |||
+ | |||
+ | Rooted trees express the notion of // | ||
+ | For an undirected graph G,any two of the statements below imply the third:\\ | ||
+ | * G is connected | ||
+ | * G doesn' | ||
+ | * G has n-1 edges | ||
+ | |||
+ | In brief, graphs are a very fundamental notion in the Computer Science field and requires attention from everyone interested in the field.\\ | ||
+ | |||
+ | Reading this section was pretty straightforward, | ||