diff options
author | Sergey <s.gaykov@yandex.ru> | 2014-10-31 17:29:06 +0300 |
---|---|---|
committer | Sergey <s.gaykov@yandex.ru> | 2014-10-31 17:29:06 +0300 |
commit | 3a12532da9d2b76adb960ece6d610bdc4099a57d (patch) | |
tree | 79e66e7699a0fc9c6f05d2447ef4e54d05f94c3a /java.html.markdown | |
parent | cd7a2e72d5850974ecd330004f3546adfbd4fe75 (diff) |
Added description of LinkedList, Map & HashMap.
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/java.html.markdown b/java.html.markdown index dffc3828..478d85d6 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 - An 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 |