Answers for "treemap"

1

TreeMap navigableKeySet() method in java

import java.util.NavigableSet;
import java.util.TreeMap;
public class TreeMapNavigableKeySetMethodExample
{
   public static void main(String[] args)
   {
      try
      {
         TreeMap<Integer, String> tm = new TreeMap<Integer, String>();
         tm.put(11, "apple");
         tm.put(12, "banana");
         tm.put(13, "grapes");
         tm.put(14, "orange");
         tm.put(15, "pineapple");
         System.out.println("Given TreeMap: " + tm);
         // get NavigableSet view of keys using navigableKeySet() method
         NavigableSet<Integer> ns = tm.navigableKeySet();
         System.out.println("Value is: " + ns);
      }
      catch(NullPointerException ex)
      {
         System.out.println("Exception: " + ex);
      }
   }
}
Posted by: Guest on October-28-2020
3

TreeMap in java

import java.util.Map;
import java.util.TreeMap;
public class TreeMapExample
{
   public static void main(String[] args) 
   {
      TreeMap<Integer, String> tm = new TreeMap<Integer, String>();    
      tm.put(1000, "Apple");    
      tm.put(1002, "Raspberry");    
      tm.put(1001, "Velvet apple");    
      tm.put(1003, "Banana");    
      for(Map.Entry obj : tm.entrySet())
      {    
         System.out.println(obj.getKey() + " " + obj.getValue());    
      }
   }
}
Posted by: Guest on November-20-2020
1

java treemap

import java.util.*;

// Declare the variable using the interface of the object for flexibility.
// Non-primative data types only.
Map<Integer, String> mambo = new TreeMap<Integer, String>();

mambo.put(key, value);
// TreeMap will be sorted by key.
// Work with any comparable object as a key.

mambo.put(1, "Monica");
mambo.put(2, "Erica");
mambo.put(3, "Rita");
Posted by: Guest on March-16-2020
1

treemap

- TreeMap doesn't have null key and keys are sorted
 Can contain only unique keys and keys are sorted in ascending order.
Posted by: Guest on December-05-2020
0

treemap java

TreeMap<Integer, String> x = new TreeMap<Integer, String>();    
tm.put(1, "Hello");
Posted by: Guest on July-31-2021
0

hashmap

- HasHMap can have null key, order is not guaranteed
Posted by: Guest on January-06-2021

Browse Popular Code Answers by Language