stevenarella/src/types/bit/set.rs

75 lines
1.8 KiB
Rust
Raw Normal View History

2016-03-16 14:25:35 -04:00
// Copyright 2016 Matthew Collins
2015-09-17 11:21:56 -04:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-09-07 16:11:00 -04:00
2016-04-04 17:08:24 -04:00
#[derive(Clone, Debug)]
2015-09-07 16:11:00 -04:00
pub struct Set {
2015-10-07 14:36:59 -04:00
data: Vec<u64>,
2015-09-07 16:11:00 -04:00
}
#[test]
fn test_set() {
let mut set = Set::new(200);
2015-10-07 14:36:59 -04:00
for i in 0..200 {
2015-09-07 16:11:00 -04:00
if i % 3 == 0 {
set.set(i, true)
}
}
2015-10-07 14:36:59 -04:00
for i in 0..200 {
if set.get(i) != (i % 3 == 0) {
2015-09-07 16:11:00 -04:00
panic!("Fail")
}
}
}
impl Set {
pub fn new(size: usize) -> Set {
Set { data: vec![0; (size + 63) / 64] }
}
pub fn resize(&mut self, new_size: usize) {
self.data.resize((new_size + 63) / 64, 0);
2015-09-07 16:11:00 -04:00
}
pub fn capacity(&self) -> usize {
self.data.len() * 64
}
2015-09-07 16:11:00 -04:00
pub fn set(&mut self, i: usize, v: bool) {
if v {
2015-10-07 14:36:59 -04:00
self.data[i >> 6] |= 1 << (i & 0x3F)
2015-09-07 16:11:00 -04:00
} else {
2015-10-07 14:36:59 -04:00
self.data[i >> 6] &= !(1 << (i & 0x3F))
2015-09-07 16:11:00 -04:00
}
}
pub fn get(&self, i: usize) -> bool {
2015-10-07 14:36:59 -04:00
(self.data[i >> 6] & (1 << (i & 0x3F))) != 0
2015-09-07 16:11:00 -04:00
}
pub fn includes_set(&self, other: &Set) -> bool {
for (a, b) in self.data.iter().zip(&other.data) {
if a & b != *b {
return false;
}
}
true
}
2016-04-04 17:08:24 -04:00
pub fn or(&mut self, other: &Set) {
for (a, b) in self.data.iter_mut().zip(&other.data) {
*a |= *b;
2016-04-04 17:08:24 -04:00
}
}
2015-09-07 16:11:00 -04:00
}