summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNimit Shah <nimit.svnit@gmail.com>2016-07-08 15:03:11 +0530
committerven <vendethiel@hotmail.fr>2016-07-08 11:33:11 +0200
commitb8e496eba15314e581c1280b1f55cd6e56740956 (patch)
tree5f5f459d10e95925ab094a586c84acda50af3e78
parent1cab710b058b9a84bf13913263c26968098d3b10 (diff)
[Java/en] Adding a reference for treemap (#2300)
* Adding a reference for treemap Adding reference for a treemap * Removing my name from the contributors list Removing my name from the contributors list as it requires a significant contribution to add my name to it.
-rw-r--r--java.html.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/java.html.markdown b/java.html.markdown
index f65c484e..1f7d4115 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -232,6 +232,9 @@ public class LearnJava {
// interface. This allows the execution time of basic
// operations, such as get and insert element, to remain
// constant even for large sets.
+ // TreeMap - This class is a sorted tree structure. It implements a red
+ // black tree and sorts the entries based on the key value or
+ // the comparator provided while creating the object
///////////////////////////////////////
// Operators