Answers for "how to get the last key from the treemap in java"

2

TreeMap lastKey() method in java

map integer values to string keys
import java.util.TreeMap;
public class TreeMapLastKeyMethodExample
{
   public static void main(String[] args)
   {
      TreeMap<String, Integer> tm = new TreeMap<String, Integer>();
      tm.put("yellow", 99);
      tm.put("violet", 86);
      tm.put("red", 93);
      tm.put("green", 36);
      tm.put("blue", 29);
      System.out.println("Given TreeMap is: " + tm);
      // display lastKey of TreeMap
      System.out.println("last key is: " + tm.lastKey());
   }
}
Posted by: Guest on October-28-2020
2

TreeMap lastKey() method in java

import java.util.TreeMap;
public class TreeMapLastKeyMethodExample
{
   public static void main(String[] args)
   {
      TreeMap<Integer, String> tm = new TreeMap<Integer, String>();
      tm.put(99, "yellow");
      tm.put(86, "violet");
      tm.put(93, "red");
      tm.put(36, "green");
      tm.put(29, "blue");
      System.out.println("Given TreeMap is: " + tm);
      // display lastKey of TreeMap
      System.out.println("last key is: " + tm.lastKey());
   }
}
Posted by: Guest on October-28-2020

Code answers related to "how to get the last key from the treemap in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language