2-Write your own hashmap

Source: Internet
Author: User

 Public classEntry {//Key    PrivateObject Key; //value    PrivateObject value; //Constructors     PublicEntry (Object key, Object value) {Super();  This. Key =key;  This. Value =value; }     PublicObject GetKey () {returnkey; }     Public voidSetkey (Object key) { This. Key =key; }     PublicObject GetValue () {returnvalue; }     Public voidSetValue (Object value) { This. Value =value; }}

 Public classHashMap {//storing an array of elements    Privateentry[] Entry =NULL; //Record Map number    Private intsize; //Constructors     PublicHashMap () { This. Entry =Newentry[100]; }        //Add new elements     Public voidput (object key, Object value) {Entry e=NewEntry (key, value); Entry[size]=e; Size++; }    //get Element     Publicobject get (Object key) { for(inti = 0; i < size; i++) {Entry e=Entry[i]; Object k=E.getkey (); if(Key.equals (k)) {returnE.getvalue (); }        }        return NULL; }}

Code testing

 Public class Demo {    /***     *     simple put get method @param  args     */ Public    staticvoid  main (string[] args) {        HashMap map=New  HashMap ();                Map.put ("Liu Shihua", "Roland");                 = Map.get ("Liu Shihua");                System.out.println (s);    }}

2-Write your own hashmap

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.