LinkedList lastIndexOf() trong java với ví dụ cụ thể

LinkedList lastIndexOf() trả về vị trí xuất hiện cuối cùng trong LinkedList. Trả về -1 nếu phần tử không chứa trong LinkedList.

Syntax:

public int lastIndexOf(Object o);

Ví dụ

import java.util.LinkedList;

public class Main {
    public static void main(String args[]) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        linkedList.add(200);
        linkedList.add(300);
        linkedList.add(200);
        linkedList.add(150);
        linkedList.add(600);
        System.out.println("Index of 200: " + linkedList.lastIndexOf(200));
        System.out.println("Index of 1000: " + linkedList.lastIndexOf(1000));
    }
}

Output: 

Index of 200: 2
Index of 1000: -1

‹Previous Next›

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x