इस लेख में, हम नीचे दिए गए समस्या कथन के समाधान के बारे में जानेंगे।
समस्या कथन - हमें एक सूची दी गई है, हमें सूची में दूसरी सबसे बड़ी संख्या प्रदर्शित करने की आवश्यकता है।
समस्या को हल करने के तीन तरीके हैं-
दृष्टिकोण 1 - हम सेट () फ़ंक्शन और निकालें () फ़ंक्शन का उपयोग करते हैं
उदाहरण
list1 = [11,22,1,2,5,67,21,32] # to get unique elements new_list = set(list1) # removing the largest element from list1 new_list.remove(max(new_list)) # now computing the max element by built-in method? print(max(new_list))
आउटपुट
32
दृष्टिकोण 2 - हम सॉर्ट () विधि और नकारात्मक अनुक्रमणिका का उपयोग करते हैं
उदाहरण
list1 = [11,22,1,2,5,67,21,32] # using built-in sort method list1.sort() # second last element print("Second largest element in the list is:", list1[-2])
आउटपुट
Second largest element in the list is: 32
दृष्टिकोण 3 - हम दूसरा अधिकतम तत्व प्राप्त करने के लिए जानवर-बल विधि का उपयोग करते हैं
उदाहरण
list1 = [11,22,1,2,5,67,21,32] #assuming max_ is equal to maximum of element at 0th and 1st index and secondmax is the minimum among them max_=max(list1[0],list1[1]) secondmax=min(list1[0],list1[1]) for i in range(2,len(list1)): # if found element is greater than max_ if list1[i]>max_: secondmax=max_ max_=list1[i] #if found element is greator than secondmax else: if list1[i]>secondmax: secondmax=list1[i] print("Second highest number is the list is : ",str(secondmax))
आउटपुट
Second highest number is the list is : 32
निष्कर्ष
इस लेख में, हमने सीखा है कि हम किसी सूची में दूसरा सबसे बड़ा तत्व कैसे ढूंढ सकते हैं।