इस लेख में, हम समझेंगे कि लिंक्ड-लिस्ट में तत्वों को कैसे जोड़ा जाए। Java.util.LinkedList क्लास ऑपरेशंस प्रदर्शन करते हैं, हम एक डबल-लिंक्ड लिस्ट के लिए उम्मीद कर सकते हैं। सूची में इंडेक्स करने वाले ऑपरेशन शुरुआत से सूची को पार करेंगे या अंत, जो भी निर्दिष्ट सूचकांक के करीब हो।
नीचे उसी का एक प्रदर्शन है -
मान लें कि हमारा इनपुट है -
Run the program
वांछित आउटपुट होगा -
The elements added to the lists are: [Java, Python, Scala, Shell]
एल्गोरिदम
Step 1 - START Step 2 - Declare a linkedlist namely input_list Step 3 – Using the nuilt-in function add(), we add the elements to the list Step 4 - Display the result Step 5 - Stop
उदाहरण 1
यहां, हम सूची के अंत में तत्व जोड़ते हैं।
import java.util.LinkedList; public class Demo { public static void main(String[] args){ LinkedList<String> input_list = new LinkedList<>(); System.out.println("A list is declared"); input_list.add("Java"); input_list.add("Python"); input_list.add("Scala"); input_list.add("Shell"); System.out.println("The elements added to the lists are: " + input_list); } }
आउटपुट
A list is declared The elements added to the lists are: [Java, Python, Scala, Shell]
उदाहरण 2
यहां, हम सूची के निर्दिष्ट स्थान पर तत्वों को जोड़ते हैं।
import java.util.LinkedList; public class Demo { public static void main(String[] args){ LinkedList<String> input_list = new LinkedList<>(); input_list.add("Java"); input_list.add("Python"); input_list.add("JavaScript"); System.out.println("The list is defined as: " + input_list); input_list.add(1, "Scala"); System.out.println("The list after adding element at position 1: " + input_list); } }
आउटपुट
The list is defined as: [Java, Python, JavaScript] The list after adding element at position 1: [Java, Scala, Python, JavaScript]