Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 966 Bytes

File metadata and controls

24 lines (18 loc) · 966 Bytes

Визуализация алгоритмов поиска по графу

Try it

Структура графа

  Стоимость графа указана в самой вершине, потому что во все стороны ее вес одинаков
export type Vertex = {
  type: BarrierType;
  siblings: Array<{ vertex: number }>;
  weight?: number;
};

export type GraphType = {
  [key: string]: Vertex;
};