Skip to content

Instantly share code, notes, and snippets.

@mariacspaz
mariacspaz / maria_paz_a.py
Created June 11, 2025 23:36
atividade de algaritmos de busca
import networkx as nx
import matplotlib.pyplot as plt
import heapq
# === 1. CONSTRUÇÃO E VISUALIZAÇÃO DO GRAFO ===
rede_direcionada = nx.MultiDiGraph()
rede_direcionada.add_edge('x', 'y', weight=1)
rede_direcionada.add_edge('y', 'x', weight=1)