
ACM_哈希
feng_zhiyu
这个作者很懒,什么都没留下…
展开
-
(UESTC - 1092)韩爷的梦(哈希 去重)
一天,韩爷去百度面试,面试官给了他这么一个问题。给你2万个字符串,每个字符串长度都是100,然后把2万个字符串丢入一个 set< string >g 中,问最终set里含有多少个元素?g 是一个用来存储字符串、具有去重功能的容器,即相同字符串在 g 中只能保留一个。两个字符串相等,当且仅当,长度一样且对应位置的字符都一样。韩爷前晚没睡好,随手写了一个程序交给面试官,然后就gg了。includeinc原创 2017-09-05 10:32:02 · 427 阅读 · 0 评论 -
【天梯赛】1005. 继续(3n+1)猜想 (25)
卡拉兹(Callatz)猜想已经在1001中给出了描述。在这个题目里,情况稍微有些复杂。 当我们验证卡拉兹猜想的时候,为了避免重复计算,可以记录下递推过程中遇到的每一个数。例如对n=3进行验证的时候,我们需要计算3、5、8、4、2、1,则当我们对n=5、8、4、2进行验证的时候,就可以直接判定卡拉兹猜想的真伪,而不需要重复计算,因为这4个数已经在验证3的时候遇到过了,我们称5、8、4、2是被3“...原创 2018-03-31 09:45:27 · 318 阅读 · 0 评论 -
【PAT甲级】1145 Hashing - Average Search Time(25 分)(平方探测法)
题目链接 The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of integer keys from the table and output the avera...原创 2018-08-26 09:41:55 · 462 阅读 · 0 评论 -
【PAT甲级】1078 Hashing(25 分)(平方探测法)
题目链接 The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. The hash function is defined to be H(key)=key...原创 2018-08-31 19:41:43 · 389 阅读 · 0 评论