-
Enhancement
-
Resolution: Won't Fix
-
P4
-
None
-
None
ADDITIONAL SYSTEM INFORMATION :
All OS
A DESCRIPTION OF THE PROBLEM :
We have LinkedHashSet and LinkedHashMap to provide constant time and random access to HashSet and HashMap. However, we don't have the similar collection something like TreeHashMap which can provide constant time and random access to Tree data structure. Could you please provide a TreeHashMap data structure too.
What is more, we have TreeSet and TreeMap to provide an ordering for Set and Map data sets. And we have LinkedHashSet and LinkedHashMap to provide random access for Set and Map, but similar functionality is missing in the language. Currently, developers can combine HashMap and Tree to solve this problem, but good to have built-in solution for completeness.
All OS
A DESCRIPTION OF THE PROBLEM :
We have LinkedHashSet and LinkedHashMap to provide constant time and random access to HashSet and HashMap. However, we don't have the similar collection something like TreeHashMap which can provide constant time and random access to Tree data structure. Could you please provide a TreeHashMap data structure too.
What is more, we have TreeSet and TreeMap to provide an ordering for Set and Map data sets. And we have LinkedHashSet and LinkedHashMap to provide random access for Set and Map, but similar functionality is missing in the language. Currently, developers can combine HashMap and Tree to solve this problem, but good to have built-in solution for completeness.