c*********t 发帖数: 2921 | 1 经常看到面试的问题可以用bitmap来解决?
谁能说说Bitmap 是什么东西?是个特殊的数据结构吗?如何用?什么时候用?是STL的
一部分吗?
哪有这方面的资料? |
b********n 发帖数: 609 | 2 不会用google啊。
【在 c*********t 的大作中提到】 : 经常看到面试的问题可以用bitmap来解决? : 谁能说说Bitmap 是什么东西?是个特殊的数据结构吗?如何用?什么时候用?是STL的 : 一部分吗? : 哪有这方面的资料?
|
y*******g 发帖数: 6599 | 3 是stl的一部分
【在 c*********t 的大作中提到】 : 经常看到面试的问题可以用bitmap来解决? : 谁能说说Bitmap 是什么东西?是个特殊的数据结构吗?如何用?什么时候用?是STL的 : 一部分吗? : 哪有这方面的资料?
|
r*********r 发帖数: 3195 | 4 in STL, it's called bitset. you can just think of it as a vector,
which can be used to keep track of on/off of a set of "things" |
c*********t 发帖数: 2921 | 5 Thanks a lot.
【在 r*********r 的大作中提到】 : in STL, it's called bitset. you can just think of it as a vector, : which can be used to keep track of on/off of a set of "things"
|