in reply to Re: (another) HoH question
in thread (another) HoH question
Set 2: A set of values pointing to the hash. There may be multiple recs pointing to a hash rec (that's OK, as I just need to know of the existence of one). There maybe hash records that no one uses.abc 123 abc 456 abc 789 xyz 456 Hash: 123->abc 456->abc 456->xyz 789->abc
I could just hash the second set, but I won't get the non-use ones like 456->xyz.xxx ==> 456->abc xxx ==> 789->abc yyy ==> 456->abc yyy ==> 456->abc (a dup) zzz ==> 123->abc Resulting hash 123->abc->zzz 456->abc->xxx 456->abc->yyy 456->xyz 789->abc->xxx
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: (another) HoH question
by muba (Priest) on Jun 23, 2012 at 19:38 UTC | |
by zuma53 (Beadle) on Jun 23, 2012 at 19:52 UTC | |
by muba (Priest) on Jun 23, 2012 at 19:59 UTC | |
by zuma53 (Beadle) on Jun 25, 2012 at 04:21 UTC | |
|
Re^3: (another) HoH question
by johngg (Canon) on Jun 24, 2012 at 16:24 UTC |