從我所學到的,自下而上的複雜度應該是n^3,但是,我的結果顯示它幾乎就像O(n)。我一直在檢查這些代碼很多次,但仍然不知道爲什麼它不是複雜性。我在這裏想念什麼? /**
* Using the bottom-up approach to fill in the table m and s for matrices P
* @param P an array storing the matric
當我在圖形上使用BFS算法時,我嘗試獲取圖形的最大深度。 但我不知道從哪裏把我的遞增在這個算法: FUNCTION BFS(G,s)
BEGIN
FOR any vertex v of G
DO Mark[v] ← False
END FOR Mark[s] ← True
F ← Empty Queue
enqueue(