The Java.util.Stack.lastIndexOf(Object element) method is used to check and find the occurrence of a particular element in the Stack. If the element is present in the Stack then the lastIndexOf() method returns the index of last occurrence of the element otherwise it returns -1. This method is used to find the last occurrence of a particular element in a Stack.
Syntax:
Stack.lastIndexOf(Object element)
Parameters: The parameter element is of type Stack. It refers to the element whose last occurrence is required to be checked.
Return Value: The method returns the position of the last occurrence of the element in the Stack. If the element is not present in the Stack then the method returns -1. The returned value is of integer type.
Below programs illustrate the Java.util.Stack.lastIndexOf() method:
Program 1:
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<String> stack = new Stack<String>();
stack.add( "Geeks" );
stack.add( "for" );
stack.add( "Geeks" );
stack.add( "10" );
stack.add( "20" );
System.out.println( "Stack: " + stack);
System.out.println( "Last occurrence of Geeks is at index: "
+ stack.lastIndexOf( "Geeks" ));
System.out.println( "Last occurrence of 10 is at index: "
+ stack.lastIndexOf( "10" ));
}
}
|
Output:
Stack: [Geeks, for, Geeks, 10, 20]
Last occurrence of Geeks is at index: 2
Last occurrence of 10 is at index: 3
Program 2:
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<Integer> stack = new Stack<Integer>();
stack.add( 10 );
stack.add( 22 );
stack.add( 3 );
stack.add( 10 );
stack.add( 20 );
System.out.println( "Stack: " + stack);
System.out.println( "Last occurrence of 10 is at index: "
+ stack.lastIndexOf( 10 ));
System.out.println( "Last occurrence of 20 is at index: "
+ stack.lastIndexOf( 20 ));
}
}
|
Output:
Stack: [10, 22, 3, 10, 20]
Last occurrence of 10 is at index: 3
Last occurrence of 20 is at index: 4
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Dec, 2018
Like Article
Save Article