Advertisements
Advertisements
प्रश्न
Write an algorithm to find smallest element in an Array.
थोडक्यात उत्तर
Advertisements
उत्तर
1) Initialize both first and second smallest as INT_MAX
first = second = INT_MAX
2) Loop through all the elements.
a) If the current element is smaller than first, then update first
and second.
b) Else if the current element is smaller than second then update
secondshaalaa.com
Basic Data Structures (Stack, Queue, Dequeue)
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
