The following example demonstrates using the linkedlistname.indexof(element) and linkedlistname.Lastindexof(elementname) methods to obtain the first and last occurrence positions of elements in the linked list:
/* author by w3cschool.cc Main.java */import java.util.LinkedList;public class Main { public static void main(String[] args) { LinkedList lList = new LinkedList(); lList.add("1"); lList.add("2"); lList.add("3"); lList.add("4"); lList.add("5"); lList.add("2"); System.out.println("元素 2 第一次出现的位置:" + lList.indexOf("2")); System.out.println("元素 2 最后一次出现的位置:"+ lList.lastIndexOf("2")); }}
The output of the above code is: :
元素 2 第一次出现的位置:1 元素 2 最后一次出现的位置:5
The above is the Java example-linked list element search content. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!