On Mar 19, 2:40 am, grbgooglefan <[EMAIL PROTECTED]> wrote:
> Hi,
> I have a situation that I need to search a name in a big list of names
> in my Python embedded interpreter. I am planning to use hash map for
> quicker search.
> How do I create hash map in Python?
> Can you please guide me to some
"sturlamolden" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| On 19 Mar, 09:40, grbgooglefan <[EMAIL PROTECTED]> wrote:
|
| > How do I create hash map in Python?
|
| Python dictionaries are the fastest hash maps known to man.
If you only have keys (the names) and no values attache
On 19 Mar, 09:40, grbgooglefan <[EMAIL PROTECTED]> wrote:
> How do I create hash map in Python?
Python dictionaries are the fastest hash maps known to man.
If you need persistent storage of your hash map, consider module bsddb
or dbhash.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I have a situation that I need to search a name in a big list of names
in my Python embedded interpreter. I am planning to use hash map for
quicker search.
How do I create hash map in Python?
Can you please guide me to some documentation or tutorial which
provides information on creating, editi
grbgooglefan schrieb:
> Hi,
> I have a situation that I need to search a name in a big list of names
> in my Python embedded interpreter. I am planning to use hash map for
> quicker search.
> How do I create hash map in Python?
> Can you please guide me to some documentation or tutorial which
> pro