Code Comments
Programming Forum and web based access to our favorite programming groups.Can anyone help me? Apart from the hashtable already implemented in java,I want to implement a hashtable in my own way using bucket array.If anyone can provide me with their least help also,I shall be grateful to him/her.I have done a bit which I am going to post after 2 hours as I am working on that presently.By this time if anyone can help,he/she will be highly appreciated. WITH REGARDS MARCUS
Post Follow-up to this messageOn Mon, 31 Mar 2008 08:02:42 -0700 (PDT), Darkfox <bidyut53@gmail.com> wrote, quoted or indirectly quoted someone who said : >Can anyone help me? Apart from the hashtable already implemented in >java,I want to implement a hashtable in my own way using bucket >array.If anyone can provide me with their least help also,I shall be >grateful to him/her.I have done a bit which I am going to post after 2 >hours as I am working on that presently.By this time if anyone can >help,he/she will be highly appreciated. see http://mindprod.com/jgloss/hashtable.html http://mindprod.com/jgloss/hashmap.html http://mindprod.com/jgloss/hashcode.html Also look at the code in SCR.ZIP for HashMap and Hashtable. (note the lower case t). -- Roedy Green Canadian Mind Products The Java Glossary http://mindprod.com
Post Follow-up to this messageOn Mar 31, 12:02 pm, Darkfox <bidyu...@gmail.com> wrote: > Can anyone help me? Apart from the hashtable already implemented in > java,I want to implement a hashtable in my own way using bucket > array.If anyone can provide me with their least help also,I shall be > grateful to him/her.I have done a bit which I am going to post after 2 > hours as I am working on that presently.By this time if anyone can > help,he/she will be highly appreciated. > WITH REGARDS > MARCUS Homework?
Post Follow-up to this messageLook at the API, there are a bunch of abstract classes you may find helpfull. http://groups.google.com/group/java...eloupment?hl=en
Post Follow-up to this messageChase Preuninger wrote: > Look at the API, there are a bunch of abstract classes you may find > helpfull. > > http://groups.google.com/group/java...eloupment?hl=en Are you referring to the Java API, as in the java.*** packages? If so, here 's the correct reference: <http://java.sun.com/javase/6/docs/a...ge-summary.html> I assume you were alluding to the classes that have names starting with "Abstract". To the OP: java.util.Hashtable is a legacy class. It was supplanted in 1998 by java.util.HashMap and other implementations of java.util.Map, and by the Collections.synchronizedMap() versions thereof. -- Lew
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.