mirror of
https://github.com/doocs/advanced-java.git
synced 2025-01-29 06:40:29 +08:00
docs: update count-different-phone-numbers.md
This commit is contained in:
parent
1ce28b5981
commit
2c73f01edb
@ -8,7 +8,7 @@
|
||||
|
||||
这道题本质还是求解**数据重复**的问题,对于这类问题,一般首先考虑位图法。
|
||||
|
||||
对于本题,8 位电话号码可以表示的号码个数为 10<sup>8</sup> 个,即 1 亿个。我们每个号码用一个 bit 来表示,则总共需要 1 亿个 bit,内存占用约 100M。
|
||||
对于本题,8 位电话号码可以表示的号码个数为 10<sup>8</sup> 个,即 1 亿个。我们每个号码用一个 bit 来表示,则总共需要 1 亿个 bit,内存占用约 12M。
|
||||
|
||||
**思路如下**:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user