圖是一組物件通過連結連線的一組物件的圖形表示。 互連物件由稱為頂點的點表示,連線頂點的連結稱為邊。 在這裡詳細描述了與圖相關的各種術語和功能。 在本章中,我們將演示如何使用python程式建立圖並向其新增各種資料元素。 以下是在圖表上執行的基本操作。
可以使用python字典資料型別輕鬆呈現圖。 我們將頂點表示為字典的關鍵字,頂點之間的連線也稱為邊界,作為字典中的值。
看看下面的圖 -
在上面的圖中 -
V = {a, b, c, d, e}
E = {ab, ac, bd, cd, de}
可以在下面的python程式中展示這個圖 -
# Create the dictionary with graph elements
graph = { "a" : ["b","c"],
"b" : ["a", "d"],
"c" : ["a", "d"],
"d" : ["e"],
"e" : ["d"]
}
# Print the graph
print(graph)
當上面的程式碼被執行時,它會產生以下結果 -
{'a': ['b', 'c'], 'b': ['a', 'd'], 'c': ['a', 'd'], 'd': ['e'], 'e': ['d']}
顯示圖的頂點
要顯示圖頂點,簡單地找到圖字典的關鍵字,使用keys()
方法。
class graph:
def __init__(self,gdict=None):
if gdict is None:
gdict = []
self.gdict = gdict
# Get the keys of the dictionary
def getVertices(self):
return list(self.gdict.keys())
# Create the dictionary with graph elements
graph_elements = { "a" : ["b","c"],
"b" : ["a", "d"],
"c" : ["a", "d"],
"d" : ["e"],
"e" : ["d"]
}
g = graph(graph_elements)
print(g.getVertices())
執行上面範例程式碼,得到以下結果 -
['a', 'b', 'c', 'd', 'e']
顯示圖的邊緣
尋找圖邊緣比頂點少一些,因為必須找到每對頂點之間有一個邊緣的頂點。 因此,建立一個空邊列表,然後疊代與每個頂點關聯的邊值。 一個列表形成了包含從頂點找到的不同組的邊。
[{'a', 'b'}, {'c', 'a'}, {'d', 'b'}, {'c', 'd'}, {'d', 'e'}]
新增一個頂點
新增一個頂點很簡單,直接新增另一個鍵到圖字典。
class graph:
def __init__(self,gdict=None):
if gdict is None:
gdict = {}
self.gdict = gdict
def getVertices(self):
return list(self.gdict.keys())
# Add the vertex as a key
def addVertex(self, vrtx):
if vrtx not in self.gdict:
self.gdict[vrtx] = []
# Create the dictionary with graph elements
graph_elements = { "a" : ["b","c"],
"b" : ["a", "d"],
"c" : ["a", "d"],
"d" : ["e"],
"e" : ["d"]
}
g = graph(graph_elements)
g.addVertex("f")
print(g.getVertices())
執行上面範例程式碼,得到以下結果 -
['a', 'b', 'c', 'd', 'e', 'f']
新增邊
將邊新增到現有圖, 涉及將新頂點視為元組並驗證邊是否已經存在。 如果不存在,則新增邊緣。
class graph:
def __init__(self,gdict=None):
if gdict is None:
gdict = {}
self.gdict = gdict
def edges(self):
return self.findedges()
# Add the new edge
def AddEdge(self, edge):
edge = set(edge)
(vrtx1, vrtx2) = tuple(edge)
if vrtx1 in self.gdict:
self.gdict[vrtx1].append(vrtx2)
else:
self.gdict[vrtx1] = [vrtx2]
# List the edge names
def findedges(self):
edgename = []
for vrtx in self.gdict:
for nxtvrtx in self.gdict[vrtx]:
if {nxtvrtx, vrtx} not in edgename:
edgename.append({vrtx, nxtvrtx})
return edgename
# Create the dictionary with graph elements
graph_elements = { "a" : ["b","c"],
"b" : ["a", "d"],
"c" : ["a", "d"],
"d" : ["e"],
"e" : ["d"]
}
g = graph(graph_elements)
g.AddEdge({'a','e'})
g.AddEdge({'a','c'})
print(g.edges())
執行上面範例程式碼,得到以下結果 -
[{'b', 'a'}, {'c', 'a'}, {'b', 'd'}, {'c', 'd'}, {'e', 'd'}, {'e', 'a'}]