Python: simulate search algorithms in network models

I use the networkx package to draw power law graphs. I want to simulate the search algorithm on this graph and I want to visually see how the algorithm moves from one node to another on the graph. How to do it?

+3
source share
2 answers

On the poppy, you can use NodeBox: http://nodebox.net/ .

+1
source

NetworkX supports drawing with Graphviz and matplotlib . Have you read the drawing -chapter in your documentation?

+1
source

Source: https://habr.com/ru/post/1730192/


All Articles