由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 怎么做hash运算?
相关主题
请教双键的动态结构用什么数据结构比较好?关于C++中一个Class的大小 (转载)
In order to optimize for insert/lookup, use a map or a hash map??which is faster, table look up or bitwise operator?
弱弱的问问hash, hashtable? (转载)how to resolve this problem?
Interview questions about hash function[合集] 偶写的itoa
STL map[合集] 如何能让这个程序快一点呢?太慢了
slack got hacked, 没一个安全的请问网上那儿可以找到测试c++,java能力的免费试题?
consistent hashing实际应用请教大家一个问题 (转载)
来来来,我也问个题 (转载)frend func defined in class
相关话题的讨论汇总
话题: hash话题: 运算话题: 商品话题: toothpaste话题: gum
进入Programming版参与讨论
1 (共1页)
m******u
发帖数: 12400
1
用例子来说明我的问题:
比如生意店铺里顾客购物、饭店里点菜等,我们用hash来记录每个单子(一次消费)。
月底或某段时间之后,汇总。这些hash内,商品名是key,购买数量是value。现在要汇
总,同一样商品的数量累计。问题是怎么用hash来实现这个汇总。谢谢。
w**z
发帖数: 8232
2
为什么是商品名做key? 需要lookup by 商品名? 有很多方法解决你的问题, 你的key
有什么特别要求?

【在 m******u 的大作中提到】
: 用例子来说明我的问题:
: 比如生意店铺里顾客购物、饭店里点菜等,我们用hash来记录每个单子(一次消费)。
: 月底或某段时间之后,汇总。这些hash内,商品名是key,购买数量是value。现在要汇
: 总,同一样商品的数量累计。问题是怎么用hash来实现这个汇总。谢谢。

m******u
发帖数: 12400
3
我的问题是hash运算,这只是举个例子。再说用如果用hash来记录买卖记录,不用商品
本身做key用什么?你会说用条形码,那本来就是一回事。
hashi1={"pants"=> 1, "toothpaste"=>2, "gum" => 4 }
hash2 ={"shirt" =>2, "suit" => 1, "gum => 5", "toothpaste"=> 1}
怎么通过hash运算,说,得到pants:1;toothpaste:3; gum: 9; shirt:1;
suit:1
w**z
发帖数: 8232
4
把你的hash 按时间index.

【在 m******u 的大作中提到】
: 我的问题是hash运算,这只是举个例子。再说用如果用hash来记录买卖记录,不用商品
: 本身做key用什么?你会说用条形码,那本来就是一回事。
: hashi1={"pants"=> 1, "toothpaste"=>2, "gum" => 4 }
: hash2 ={"shirt" =>2, "suit" => 1, "gum => 5", "toothpaste"=> 1}
: 怎么通过hash运算,说,得到pants:1;toothpaste:3; gum: 9; shirt:1;
: suit:1

1 (共1页)
进入Programming版参与讨论
相关主题
frend func defined in classSTL map
C++ Q04: template memberslack got hacked, 没一个安全的
C++ multiple inheritance problemconsistent hashing实际应用
有什么方法可以优化hashtable?来来来,我也问个题 (转载)
请教双键的动态结构用什么数据结构比较好?关于C++中一个Class的大小 (转载)
In order to optimize for insert/lookup, use a map or a hash map??which is faster, table look up or bitwise operator?
弱弱的问问hash, hashtable? (转载)how to resolve this problem?
Interview questions about hash function[合集] 偶写的itoa
相关话题的讨论汇总
话题: hash话题: 运算话题: 商品话题: toothpaste话题: gum