summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-11-02 22:38:59 -0600
committerLevi Bostian <levi.bostian@gmail.com>2014-11-02 22:38:59 -0600
commit70c67b8ee1d000eb0ceb29813de3ce54f5e8d20c (patch)
treec727cfe35487d4471f48914a7521aad4c43af459
parent24a4426dd0f02468810b475d17bb6aed307e178a (diff)
parent494d97c4ee624f384ce771bc06f14d53ffecfca9 (diff)
Merge pull request #841 from gaykov/master
[Java] Added description of LinkedList, Map & HashMap.
-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