graph_basic_notions (555B)
1 # Graph basic notions 2 3 - [degree] 4 - [connected_component] 5 - [connectivity] 6 - [strongly_connected] 7 - [strongly_connected_component] 8 - [path] 9 - [simple_path] 10 - [trail] 11 - [eulerian_trail] 12 - [walk] 13 - [cycle] 14 - [circuit] 15 - [tour] 16 - [hamiltonian_cycle] 17 - [vertex_cover] 18 - [edge_cover] 19 - [articulation_point] 20 - [matching] 21 - [graph_isomorphism] 22 - [graph_automorphism] 23 - [subgraph], [induced_subgraph] 24 - [vertex] 25 - [edge] 26 - [self_loop] 27 - [graph_representation] 28 - [adjacency_matrix] 29 - [adjacency_list] 30 31 Up: [graph] 32 33 See also: [multigraph]