ในบทความนี้ เราจะเข้าใจวิธีการเพิ่มองค์ประกอบในรายการที่เชื่อมโยง การดำเนินการคลาส 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]