summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2014-11-05 13:14:56 -0700
committerGeoff Liu <cangming.liu@gmail.com>2014-11-05 13:14:56 -0700
commit459967e44660a064b4f5786a3932473e5fe7d2ff (patch)
tree258eaece4158ec1ba5c945d8a2f808dfab41fa24 /java.html.markdown
parent1d665b9c0734ac606c2f8fa8b71c22c1d7ac377b (diff)
parent17a0d9c96606dfd4fd1c014cb7d037c56bfd1f19 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown12
1 files changed, 9 insertions, 3 deletions
diff --git a/java.html.markdown b/java.html.markdown
index dffc3828..f08c4679 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -123,9 +123,15 @@ public class LearnJava {
// Others to check out
// ArrayLists - Like arrays except more functionality is offered,
// and the size is mutable
- // LinkedLists
- // Maps
- // HashMaps
+ // LinkedLists - Implementation of doubly-linked list. All of the
+ // operations perform as could be expected for
+ // a doubly-linked list.
+ // Maps - A set of objects that maps keys to values. A map cannot contain
+ // duplicate keys; each key can map to at most one value.
+ // HashMaps - This class uses a hashtable to implement the Map interface.
+ // This allows the execution time of basic operations,
+ // such as get and insert element, to remain constant even
+ // for large sets.
///////////////////////////////////////
// Operators