-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add count_ones, count_zeros methods #22
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can be much simpler, unless I'm missing something.
|
||
if self.is_inline() { | ||
let mask = inline_ones(len); | ||
(self.data & mask).count_ones() as usize |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to return here and deindent the rest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you really need the & mask
for this case? The other bits should always be zero.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I lie, I recall that we use the last non-zero bit as a sentinel, so you do need this.
(self.data & mask).count_ones() as usize | ||
} else { | ||
let mut count = 0; | ||
for &storage in self.buffer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same, can't this loop just do count += storage.count_ones()
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can do this though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And you cannot, because we don't clear storage when we pop()
, so never mind :)
} | ||
|
||
/// Counts the number of bits in the vector that are set to zero/false | ||
pub fn count_zeros(&self) -> usize { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why can't this be self.len() - self.count_ones()
?
Pretty self-explanatory. Add methods for counting the number of ones/zeros in a
SmallBitVec
.