Given an array of numbers, we need to find the second min element with optimal number of comparisons. Let’s compare two elements (side by side) and get next set of min element list. Recursively, we end up with lowest numberContinue reading… Number of comparisons to find second minimum element in an Array