Create NavigableMap in Java


Let us first create a NavigableMap

NavigableMap<String, Integer> n = new TreeMap<String, Integer>();

Now, let us add some elements

n.put("A", 888);
n.put("B", 999);
n.put("C", 444);
n.put("D", 555);
n.put("E", 666);
n.put("F", 888);

The following is the complete example to create NavigableMap, add elements and display them

Example

 Live Demo

import java.util.*;
public class Demo {
   public static void main(String[] args) {
      NavigableMap<String, Integer> n =
      new TreeMap<String, Integer>();
      n.put("A", 888);
      n.put("B", 999);
      n.put("C", 444);
      n.put("D", 555);
      n.put("E", 666);
      n.put("F", 888);
      n.put("G", 999);
      n.put("H", 444);
      n.put("I", 555);
      n.put("J", 666);
      System.out.println("NavigableMap elements...
"+n); } }

Output

NavigableMap elements...
{A=888, B=999, C=444, D=555, E=666, F=888, G=999, H=444, I=555, J=666}

Updated on: 30-Jul-2019

73 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements