BSO 一下百元HTPC# Hardware - 计算机硬件
a*8
1 楼
1. First greater number in an array. Given a large array of positive
integers, for an arbitrary integer A, we want to know the first integer in
the array which is greater than or equal A . O(logn) solution required
ex [2, 10,5,6,80]
input : 6 output : 10
input :20 output : 80
没想到Lg(n)的办法
2. 一堆数,其中一些数出现了一次,一些数出现了两次,只有一个数出现了三次
找出那个出现了3次的数, hash方法很trivial 就不说了
没想到不用hahs怎么做。
integers, for an arbitrary integer A, we want to know the first integer in
the array which is greater than or equal A . O(logn) solution required
ex [2, 10,5,6,80]
input : 6 output : 10
input :20 output : 80
没想到Lg(n)的办法
2. 一堆数,其中一些数出现了一次,一些数出现了两次,只有一个数出现了三次
找出那个出现了3次的数, hash方法很trivial 就不说了
没想到不用hahs怎么做。