This Java program is to Implement TreeMap API.A Red-Black tree based NavigableMap implementation. The map is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used.
This implementation provides guaranteed log(n) time cost for the containsKey, get, put and remove operations.
Here is the source code of the Java program to Implement TreeMap API. The Java program is successfully compiled and run on a Linux system. The program output is also shown below.
import java.util.Collection;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.NavigableMap;
import java.util.NavigableSet;
import java.util.Set;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.Map.Entry;
public class TreeMapImpl<K, V>
{
private TreeMap<K, V> treeMap;
/** Constructs a new, empty tree map, using the natural ordering of its keys. **/
public TreeMapImpl()
{
treeMap = new TreeMap<K, V>();
}
/**
* Constructs a new, empty tree map, ordered according to the given
* comparator.
**/
public TreeMapImpl(Comparator<? super K> comparator)
{
treeMap = new TreeMap<K, V>(comparator);
}
/**
* Constructs a new tree map containing the same mappings as the given map,
* ordered according to the natural ordering of its keys.
**/
public TreeMapImpl(Map<? extends K, ? extends V> m)
{
treeMap = new TreeMap<K, V>(m);
}
/**
* Constructs a new tree map containing the same mappings and using the same
* ordering as the specified sorted map.
**/
public TreeMapImpl(SortedMap<K, ? extends V> m)
{
treeMap = new TreeMap<K, V>(m);
}
/**
* Returns a key-value mapping associated with the least key greater than or
* equal to the given key, or null if there is no such key.
**/
public Map.Entry<K, V> ceilingEntry(K key)
{
return treeMap.ceilingEntry(key);
}
/**
* Returns the least key greater than or equal to the given key, or null if
* there is no such key.
**/
public K ceilingKey(K key)
{
return treeMap.ceilingKey(key);
}
/** Removes all of the mappings from this map. **/
public void clear()
{
treeMap.clear();
}
/** Returns a shallow copy of this TreeMap instance. **/
public Object clone()
{
return treeMap.clone();
}
/**
* Returns the comparator used to order the keys in this map, or null if
* this map uses the natural ordering of its keys.
**/
public Comparator<? super K> comparator()
{
return treeMap.comparator();
}
/** Returns true if this map contains a mapping for the specified key. **/
public boolean containsKey(Object key)
{
return treeMap.containsKey(key);
}
/** Returns true if this map maps one or more keys to the specified value. **/
public boolean containsValue(Object value)
{
return treeMap.containsValue(value);
}
/**
* Returns a reverse order NavigableSet view of the keys contained in this
* map.
**/
public NavigableSet<K> descendingKeySet()
{
return treeMap.descendingKeySet();
}
/** Returns a reverse order view of the mappings contained in this map. **/
public NavigableMap<K, V> descendingMap()
{
return treeMap.descendingMap();
}
/** Returns a Set view of the mappings contained in this map. **/
public Set<Map.Entry<K, V>> entrySet()
{
return treeMap.entrySet();
}
/**
* Returns a key-value mapping associated with the least key in this map, or
* null if the map is empty.
**/
public Map.Entry<K, V> firstEntry()
{
return treeMap.firstEntry();
}
/** Returns the first (lowest) key currently in this map. **/
public K firstKey()
{
return treeMap.firstKey();
}
/**
* Returns the greatest key less than or equal to the given key, or null if
* there is no such key.
**/
public K floorKey(K key)
{
return treeMap.floorKey(key);
}
/**
* Returns the value to which the specified key is mapped, or null if this
* map contains no mapping for the key.
**/
public V get(Object key)
{
return treeMap.get(key);
}
/**
* Returns a view of the portion of this map whose keys are strictly less
* than toKey.
**/
public SortedMap<K, V> headMap(K toKey)
{
return treeMap.headMap(toKey);
}
/**
* Returns a view of the portion of this map whose keys are less than (or
* equal to, if inclusive is true) toKey.
**/
public NavigableMap<K, V> headMap(K toKey, boolean inclusive)
{
return treeMap.headMap(toKey, inclusive);
}
/**
* Returns a key-value mapping associated with the least key strictly
* greater than the given key, or null if there is no such key.
**/
public Map.Entry<K, V> higherEntry(K key)
{
return treeMap.higherEntry(key);
}
/**
* Returns the least key strictly greater than the given key, or null if
* there is no such key.
**/
public K higherKey(K key)
{
return treeMap.higherKey(key);
}
/** Returns a Set view of the keys contained in this map. **/
public Set<K> keySet()
{
return treeMap.keySet();
}
/**
* Returns a key-value mapping associated with the greatest key in this map,
* or null if the map is empty.
**/
public Map.Entry<K, V> lastEntry()
{
return treeMap.lastEntry();
}
/** Returns the last (highest) key currently in this map. **/
public K lastKey()
{
return treeMap.lastKey();
}
/**
* Returns a key-value mapping associated with the greatest key strictly
* less than the given key, or null if there is no such key.
**/
public Map.Entry<K, V> lowerEntry(K key)
{
return treeMap.lowerEntry(key);
}
/**
* Returns the greatest key strictly less than the given key, or null if
* there is no such key.
**/
public K lowerKey(K key)
{
return treeMap.lowerKey(key);
}
/** Returns a NavigableSet view of the keys contained in this map. **/
public NavigableSet<K> navigableKeySet()
{
return treeMap.navigableKeySet();
}
/**
* Removes and returns a key-value mapping associated with the least key in
* this map, or null if the map is empty.
**/
public Map.Entry<K, V> pollFirstEntry()
{
return treeMap.pollFirstEntry();
}
/**
* Removes and returns a key-value mapping associated with the greatest key
* in this map, or null if the map is empty.
**/
public Map.Entry<K, V> pollLastEntry()
{
return treeMap.pollLastEntry();
}
/** Associates the specified value with the specified key in this map. **/
public V put(K key, V value)
{
return treeMap.put(key, value);
}
/** Copies all of the mappings from the specified map to this map. **/
public void putAll(Map<? extends K, ? extends V> map)
{
treeMap.putAll(map);
}
/** Removes the mapping for this key from this TreeMap if present. **/
public V remove(Object key)
{
return treeMap.remove(key);
}
/** Returns the number of key-value mappings in this map. **/
public int size()
{
return treeMap.size();
}
/**
* Returns a view of the portion of this map whose keys range from fromKey
* to toKey.
**/
public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
{
return treeMap.subMap(fromKey, fromInclusive, toKey, toInclusive);
}
/**
* Returns a view of the portion of this map whose keys range from fromKey,
* inclusive, to toKey, exclusive.
**/
public SortedMap<K, V> subMap(K fromKey, K toKey)
{
return treeMap.subMap(fromKey, toKey);
}
/** Returns a Collection view of the values contained in this map. **/
public Collection<V> values()
{
return treeMap.values();
}
public static void main(String... arg)
{
TreeMapImpl<Integer, Integer> treeMap = new TreeMapImpl<Integer, Integer>();
treeMap.put(10, 100);
treeMap.put(89, -89);
treeMap.put(45, 345);
treeMap.put(90, 23);
Map<Integer, Integer> anotherMap = new HashMap<Integer, Integer>();
anotherMap.put(34, 9);
anotherMap.put(23, 00);
treeMap.putAll(anotherMap);
System.out.println("the key set of the treeMap map is ");
Set<Integer> keySet = treeMap.keySet();
Iterator<Integer> itr = keySet.iterator();
while (itr.hasNext())
{
System.out.print(itr.next() + "\t");
}
System.out.println();
System.out.println("the values of the treeMap is ");
Collection<Integer> collectionValues = treeMap.values();
itr = collectionValues.iterator();
while (itr.hasNext())
{
System.out.print(itr.next() + "\t");
}
System.out.println();
System.out.println("poll first entry of the map ");
Map.Entry<Integer, Integer> pollFirstEntry = treeMap.pollFirstEntry();
System.out.println("key = " + pollFirstEntry.getKey() + " value = " + pollFirstEntry.getValue());
System.out.println("poll last entry of the map ");
Map.Entry<Integer, Integer> pollLastEntry = treeMap.pollLastEntry();
System.out.println("key = " + pollLastEntry.getKey() + " value = " + pollLastEntry.getValue());
System.out.println("the entry set of the treeMap is ");
Iterator<Entry<Integer, Integer>> eitr;
Set<Entry<Integer, Integer>> entrySet = treeMap.entrySet();
eitr = entrySet.iterator();
while (eitr.hasNext())
{
System.out.println(eitr.next() + "\t");
}
System.out.println("the treeMap contains Key 34 :" + treeMap.containsKey(34));
System.out.println("the treeMap contains Value 600 :" + treeMap.containsValue(600));
System.out.println("the size of the treeMap is " + treeMap.size());
treeMap.clear();
}
}
$ javac TreeMapImpl.java $ java TreeMapImpl the key set of the treeMap map is 10 23 34 45 89 90 the values of the treeMap is 100 0 9 345 -89 23 poll first entry of the map key = 10 value = 100 poll last entry of the map key = 90 value = 23 the entry set of the treeMap is 23=0 34=9 45=345 89=-89 the treeMap contains Key 34 :true the treeMap contains Value 600 :false the size of the treeMap is 4
Related posts:
Sử dụng CountDownLatch trong Java
A Guide to @RepeatedTest in Junit 5
Check If Two Lists are Equal in Java
Java Program to Implement Interval Tree
Comparing Objects in Java
Prevent Cross-Site Scripting (XSS) in a Spring Application
Find the Registered Spring Security Filters
Assert an Exception is Thrown in JUnit 4 and 5
Using JWT with Spring Security OAuth
Introduction to the Java NIO Selector
A Guide to Queries in Spring Data MongoDB
Java Program to Perform Complex Number Multiplication
Giới thiệu Design Patterns
Lớp Arrarys trong Java (Arrays Utility Class)
Java Program to Compute DFT Coefficients Directly
Mapping a Dynamic JSON Object with Jackson
Java Program to Check the Connectivity of Graph Using DFS
Java Program to Perform Postorder Recursive Traversal of a Given Binary Tree
Static Content in Spring WebFlux
Java Program to Construct an Expression Tree for an Infix Expression
Servlet 3 Async Support with Spring MVC and Spring Security
Send an email with an attachment
Easy Ways to Write a Java InputStream to an OutputStream
Jackson Exceptions – Problems and Solutions
Spring Boot - Introduction
Copy a List to Another List in Java
Java Program to Find Transpose of a Graph Matrix
Guide to UUID in Java
Xây dựng ứng dụng Client-Server với Socket trong Java
Comparing Dates in Java
Java Program to Perform the Sorting Using Counting Sort
A Guide to BitSet in Java