Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Linked List Doubly Linked List
अगर हम सिंगली लिंक्ड लिस्ट का अंतिम नोड खोजना चाहते हैं तो सही कोड है:
1
if (temp-link ! = NULL) temp = temp-link
2
if (temp-data = Num) temp = temp-link
3
While (temp-link ! = NULL) temp = temp-link
4
While (temp-link! = data) temp = temp-link