what is treemap code example
Example 1: java treemap
import java.util.*;
Map<Integer, String> mambo = new TreeMap<Integer, String>();
mambo.put(key, value);
mambo.put(1, "Monica");
mambo.put(2, "Erica");
mambo.put(3, "Rita");
Example 2: treemap in java
TreeSet: Can contain only unique values and it is sorted in ascending order
TreeMap: Can contain only unique keys and keys are sorted in ascending order.
Example 3: what is treemap
- TreeMap doesn't have null key and keys are sorted
Can contain only unique keys and keys are sorted in ascending order.