Data Structures & Algorithms Multiple Choice Questions on “Closest Pair Problem”.
1. Which of the following areas do closest pair problem arise? Answer: a 2. Which approach is based on computing the distance between each pair of distinct points and finding a pair with the smallest distance? Answer: a 3. What is the runtime efficiency of using brute force technique for the closest pair problem? Answer: c 4. The most important condition for which closest pair is calculated for the points (pi, pj) is? Answer: d 5. What is the basic operation of closest pair algorithm using brute force technique? Answer: a 6. Which of the following is similar to Euclidean distance? Answer: b 7. Which of the following strategies does the following diagram depict? Answer: b 8. Manhattan distance is an alternative way to define a distance between two points. Answer: a 9. What is the optimal time required for solving the closest pair problem using divide and conquer approach? Answer: c 10. In divide and conquer, the time is taken for merging the subproblems is? 11. The optimal time obtained through divide and conquer approach using merge sort is the best case efficiency. 12. Which of the following strategies does the following diagram depict? Answer: b 13. Which of the points are closer to each other? Answer: c & Algorithms.
a) computational geometry
b) graph colouring problems
c) numerical problems
d) string matching
Clarification: Closest pair problem arises in two most important areas- computational geometry and operational research.
a) Brute force
b) Exhaustive search
c) Divide and conquer
d) Branch and bound
Clarification: Brute force is a straight forward approach that solves closest pair problem using that algorithm.
a) O(N)
b) O(N log N)
c) O(N2)
d) O(N3 log N)
Clarification: The efficiency of closest pair algorithm by brute force technique is mathematically found to be O(N2).
a) i>j
b) i!=j
c) i=j
d) i
Clarification: To avoid computing the distance between the same pair of points twice, we consider only the pair of points (pi, pj) for which i
a) Euclidean distance
b) Radius
c) Area
d) Manhattan distance
Clarification: The basic operation of closest pair algorithm is Euclidean distance and its formula is given by d=√(xi-xj)2+(yi-yj)2.
a) Manhattan distance
b) Pythagoras metric
c) Chebyshev distance
d) Heuristic distance
Clarification: In older times, Euclidean distance metric is also called a Pythagoras metric which is the length of the line segment connecting two points.
a) Divide and conquer strategy
b) Brute force
c) Exhaustive search
d) Backtracking
Clarification: Brute force is a straight forward approach to solve critical problems. Here, we use brute force technique to find the closest distance between p1 and p2.
a) true
b) false
View Answer
Clarification: Manhattan distance is an alternative way to calculate distance. It is the distance between two points measured along axes at right angles.
a) O(N)
b) O(log N)
c) O(N log N)
d) O(N2)
Clarification: The optimal time for solving using a divide and conquer approach is mathematically found to be O(N log N).
a) O(N)
b) O(N log N)
c) O(N2)
d) O(log N)
Answer: b
Clarification: The time taken for merging the smaller subproblems in a divide and conquer approach is mathematically found to be O(N log N).
a) true
b) false
Answer: a
Clarification: The optimal time obtained through divide and conquer approach is the best class efficiency and it is given by Ω(N log N).
a) Brute force
b) Divide and conquer
c) Exhaustive search
d) Branch and bound
Clarification: The above diagram depicts the implementation of divide and conquer. The problem is divided into sub problems and are separated by a line.
a) p1 and p11
b) p3 and p8
c) p2 and p3
d) p9 and p10
Clarification: From symmetry, we determine that the closest pair is p2 and p3. But the exact calculations have to be done using Euclid’s algorithm.