Open In App
Related Articles

LinkedList descendingIterator() method in Java with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

The descendingIterator() method of java.util.LinkedList class is used to return an iterator over the elements in this LinkedList in reverse sequential order. The elements will be returned in order from last (tail) to first (head).

Syntax:

public Iterator descendingIterator()

Return Value: This method returns an iterator over the elements in this LinkedList in reverse sequence.

Below are the examples to illustrate the descendingIterator() method

Example 1:




// Java program to demonstrate
// descendingIterator() method
// for String value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // creating object of TreeMap<Integer, String>
            LinkedList<String> list = new LinkedList<String>();
  
            // add some elements to list
            list.add("A");
            list.add("B");
            list.add("C");
  
            // print the linked list
            System.out.println("LinkedList:" + list);
  
            // set Iterator as descending
            // using descendingIterator() method
            Iterator x = list.descendingIterator();
  
            // print list with descending order
            while (x.hasNext()) {
                System.out.println("Value is : "
                                   + x.next());
            }
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : "
                               + e);
        }
    }
}


Output:

LinkedList:[A, B, C]
Value is : C
Value is : B
Value is : A

Example 2:




// Java program to demonstrate
// descendingIterator() method
// for Integer value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // creating object of TreeMap<Integer, String>
            LinkedList<Integer>
                list = new LinkedList<Integer>();
  
            // add some elements to list
            list.add(10);
            list.add(20);
            list.add(30);
  
            // print the linked list
            System.out.println("LinkedList:" + list);
  
            // set Iterator as descending
            // using descendingIterator() method
            Iterator x = list.descendingIterator();
  
            // print list with descending order
            while (x.hasNext()) {
                System.out.println("Value is : "
                                   + x.next());
            }
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output:

LinkedList:[10, 20, 30]
Value is : 30
Value is : 20
Value is : 10

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 : 10 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials