115 Casestudy
115 Casestudy
Case Study
On
“Approximation algorithms(Travelling
salesman algorithms)”
Submitted by
Kuldeep Dinkar Patil (115)
[2024-25]
Index
1 Introduction
2 Algorithm
3 Real Life Examples
4 Example
5 Conclusion
1. Introduction
The Travelling Salesman Problem (TSP) is used for a wide range of practical
applications, particularly in fields involving optimization, logistics, and network
design. TSP is fundamentally about finding the most efficient route that visits a set
of locations, which has a direct impact on many real-world problems.
Algorithm Steps
Complexity
• Best and Average Case: O(nlogn)O(n \log n)O(nlogn) due to the balanced
partitioning achieved by random pivot selection.
• Worst Case: O(n2)O(n^2)O(n2) if the pivot is always chosen poorly
(e.g., al ways the smallest or largest element), but this is rare with
randomization.
3. Objective
Guarantee Probabilistic Accuracy: Deliver results that are correct with high
probability, balancing precision and computational cost.