
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
tttttttttttttttttt tvdgsddddddddddddd gdsg dsggggggggggggggggdssssssg xcvvvvvvvvvvvvvvvvvvvvvvvv
Typology: Thesis
1 / 1
This page cannot be seen from the preview
Don't miss anything!
Given a set of points in a 2-dimensional plane, a minimum spanning tree is a tree that connects all the points such that there exists only one path between any pair of vertices. If Prim's algorithm or Kruskal's algorithm is used, construction of minimum spanning tree takes O(n^2 ) time which is not efficient for large values of n. The base paper [1] describes an algorithm that constructs delaunay triangulation as a sub-procedure which takes O(n log n) as its running time which is the bottleneck for the overall time complexity of the algorithm. In this project, I attempt to solve this problem by using 1) a sweepline algorithm or 2) by using a randomized algorithm to construct delaunay triangulations faster and check whether the time complexity can be improved.
X and Y co-ordinates of a set of points in a 2-dimensional euclidean plane
A minimum spanning tree that connects all the points
[1] Ge Hong-mei, Xu Chao, Yu Ben-cheng, Design and Analysis of Minimum Spanning Tree in Euclidean Plane, International Conference on Computational and Information Sciences (2013).