Created
January 24, 2018 14:02
-
-
Save foxx/e01a65470b6e0b024c70c3ee74efabf6 to your computer and use it in GitHub Desktop.
lol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def comParsing(): | |
global comDist,n,nodeCoordinates | |
n = int(graph.split('\n')[0].split()) | |
for i in graph.split('\n')[1:]: | |
nodeCoordinates.append((int(i.split()[0]), int(i.split()[1]))) | |
for i,index in zip(nodeCoordinates,range(n)): | |
for j,index2 in zip(nodeCoordinates,range(n)): | |
comDist[index][index2]=math.sqrt((nodeCoordinates[j][0]-nodeCoordinates[i][0])**2+(nodeCoordinates[j][1]-nodeCoordinates[i][1])**2) #rasstoyanie ot i do vseh j | |
def commivoyager(): | |
curr=0 | |
comPath=[] | |
comPath.push(curr) | |
while(!len(comPath)==n): | |
curr=comDist[curr].index(min(comDist[curr])) | |
comPath.push(curr) | |
print comPath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment