一处小错误。
第90页(第6章 广度优先搜索)中的“运行时间”部分,有一句话:
所以,广度优先搜索的运行时间为 O(人数 + 边数),这通常写作O(V + E),其中V为顶点(vertice)数,E为边数。
这句话对应的原文是:
Breadth-irst search takes O(number of people + number of edges), and it’s more commonly written as O(V+E) (V for number of vertices, E for number of edges).
“顶点”的拼写出错了,vertices的单数形式是vertex,而译者不小心写成了"vertice"。