Questions tagged [probing]
52 questions
0
votes
1 answer
How to insert random ints into hashing table?
The data structure & algorithm class that I'm taking now is a lot of pen and paper understanding of how algorithms work, but very little actual coding. I'm kind of a programming noob, so this may be a stupid question to some of you.
Conceptually, I…

Jackson F
- 48
- 1
- 6
0
votes
1 answer
Assembly path when created by Reflection (C#)
I have a strange situation where the wrong assembly is used when created by reflection.
This is my setup (simplified):
Project1: Class Library
Project2: client app
Project2 creates Project1.dll by reflection from a specific…

AnalogKid17
- 93
- 1
- 2
- 9
0
votes
1 answer
Why does this hash table lookup probe like it does?
This code (extraced from an LZW compression program of unknown origin) finds an empty slot in a hash table of size 5021, indexed from 0 to 5020:
probe :=
// probe is initially 0 to 4095
repeat
{
if table[probe] is empty…

Witness Protection ID 44583292
- 1,072
- 1
- 8
- 25
0
votes
1 answer
Probing Working in Debug Folder but Nowhere Else
This is my App.config

Prime
- 2,410
- 1
- 20
- 35
0
votes
1 answer
Probing in AppFabric
I am new to Windows Server AppFabric caching. I have configured it in XML mode, and have tried basic sample porgrams on it.
I am trying to develop my own cache now.Is it possible to use any of the probing techniques (linear, quadratic, hashing,…

user2454548
- 11
- 1
0
votes
1 answer
Probing assembly in .net
I know that how CLRprobing assembly but I want to know:Is CLRprobing assembly in GAC folder?
user1968030