In finding convex hull for a set of points using divide and conquer algorithm, we need to find an upper and lower bridge. The algorithm for finding these bridges, for example, the upper bridge is:
Start with any bridge. For example, a bridge is guaranteed if you join the rightmost vertex on the left to the leftmost vertex on the right.
Keeping the left end of the bridge fixed, see if the right end can be raised. That is, look at the next vertex on the right polygon going clockwise, and see whether that would be a (better) bridge. Otherwise, see if the left end can be raised while the right end remains fixed.
If made no progress in (2) (cannot raise either side), then stop else repeat (2).
My question is is it mandatory to choose only the rightmost vertex on the left to the leftmost vertex on the right? Can we choose:
a. leftmost vertex on the left to the leftmost vertex on the right?
b. rightmost vertex on the left to the rightmost vertex on the right?
c. leftmost vertex on the left to the rightmost vertex on the right?