001 002 003 004 005 006 007 008 009 010 011 012 typedef struct { 013 // Informacoes fixas 014 int anDist[MAX_VERTICES][MAX_VERTICES]; 015 int nNumVertices; 016 int nDistDelta; 017 018 // Informacoes que variam durante as recursoes 019 int nDistTotal; 020 int nVisitados; 021 int anCaminho[MAX_VERTICES]; 022 char acCorVert[MAX_VERTICES]; 023 024 // Menor resposta computada durante o algoritmo 025 int nMinDistTotal; 026 int anMinCaminho[MAX_VERTICES]; 027 } TPcvData; 028 029 030