Analyse and Design of Algorithm: Assignment File

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

ANALYSE AND DESIGN OF ALGORITHM

Assignment file

SUBMITTED TO: - SUBMITTED BY: -


DR. RENU NANDAL POOJA
Assistant professor (CSE), Roll no.: -19524

CLASS: - CSE-1(6TH SEM)

UIET MDU, ROHTAK


Write a program for Travelling salesperson problem with up to five
vertices. Check the code with test case zero to five vertices.
Travelling salesperson problem:
Program:
from sys import maxsize
V=4
def travellingSalesmanProblem(graph, s):
vertex = []
for i in range(V):
if i != s:
vertex.append(i)
min_path = maxsize
while True:
current_pathweight = 0
k=s
for i in range(len(vertex)):
current_pathweight += graph[k][vertex[i]]
k = vertex[i]
current_pathweight += graph[k][s]
min_path = min(min_path, current_pathweight)
if not next_permutation(vertex):
break
return min_path
def next_permutation(L):
n = len(L)
i=n-2
while i >= 0 and L[i] >= L[i + 1]:
i -= 1
if i == -1:
return False
j=i+1
while j < n and L[j] > L[i]:
j += 1
j -= 1
L[i], L[j] = L[j], L[i]
left = i + 1
right = n - 1
while left < right:
L[left], L[right] = L[right], L[left]
left += 1
right -= 1

return True
if __name__ == "__main__":

# matrix representation of graph


graph = [[0, 10, 5, 25, 35, 40], [10, 0, 25, 25, 30, 35],
[15, 25, 0, 40, 25, 10], [20, 25, 30, 0, 30]]
s=0
print(travellingSalesmanProblem(graph, s))

You might also like