0
votes
1answer
27 views
What’s the benefit of Keyboard Accelerators added to an HashTable in .NET?
Hi,
For a long time I had the following bookmark in Firefox:
http://www.codeguru.com/csharp/.net/net_general/keyboard/article.php/c4639
I know decided to read it and implement it …
0
votes
1answer
26 views
How to store a HashTable in the usersettings?
Hello,
In .NET you can select a hashtable as type for a usersetting. However when I save it and retrieve it in this way, it doesnt seem to have saved it at all.
Hashtable t = new …
0
votes
5answers
104 views
Anagram Hash Function
I know something like this has been asked before, but the answer was sort of side tracked.
I want to develop a hash function which will take a word and spit out an address of an a …
1
vote
1answer
43 views
Making a perfect hash (all consecutive buckets full), gperf or alternatives?
Let's say I want to build a perfect hash table for looking up an array where the predefined keys are 12 Months, thus I would want
hash("January")==0
hash("December")==11
I run m …
0
votes
1answer
20 views
how to store an hashtable or object in cookie
How to store object or hashtable in cookies?
I am trying to store multiple values in hastable/class to the cookie in my asp.net mvc (C#) application.
How to do it?
1
vote
3answers
87 views
Is searching a HashTable slower when the key are strings and the strings contain spaces
Today I was discussing with another developer about a limitation in a third party library, where we couldn't use spaces in a string. The reasoning was that the strings were used as …
1
vote
2answers
86 views
Add to a hashtable
I am trying to implement a hash table with linear probing. I am using symbol as my key. Can someone look over my private members and tell me if they are correct? I think the
stock. …
4
votes
4answers
89 views
Why isn’t randomized probing more popular in hash table implementations?
According to various sources, such as Wikipedia and various .edu websites found by Google, the most common ways for a hash table to resolve collisions are linear or quadratic probi …
0
votes
2answers
55 views
how to filter out DateTime type of values from all hashtable value?
I need to convert all DateTime values to String, though out my project, all of my code at the end follows 1 function, where I have 4 different Hashtables (actually XmlRpcStruct Obj …
1
vote
4answers
70 views
Hashtable how to get string value without toString().
How could I get the string value from a hashtable without calling toString() methode?
example: my class:
public class myHashT : Hashtable
{
public myHashT () { }
...
public ov …
2
votes
2answers
64 views
Why does Dictionary[index] throws a KeyNotFoundException but Hashtable[index] doesn’t?
Any idea why this behaviour is different?
1
vote
2answers
68 views
Frequently Used metadata Hashmap
Are there any implementations of a static size hashtable that limits the entries to either the most recently or most frequently used metadata? I would prefer not to keep track of t …
5
votes
5answers
95 views
Acceptable types to use as keys in a HashTable
I must admit to having only a rudimentary understanding of how HashTables work, although from what little I do know it seems fairly straightforward. My question is just this: it se …
1
vote
4answers
55 views
C# Insert Button Into Hashtable.
I have a Winform in c# and I'm trying to build a hashtable with a list of buttons that I have. IE: Monday0700Button, Monday0730Button, Monday0800Button, and so on.
In the hashtabl …
4
votes
2answers
51 views
Best practice for loading and using dictionary items?
Say I have some 10 "categories" that I need to reference in a web app. Currently I'm storing these categories in the DB and am retrieving them (category name and id) during pagel …
