stevenarella/src/types/bit/set.rs

55 lines
1.4 KiB
Rust
Raw Normal View History

2015-09-17 11:21:56 -04:00
// Copyright 2015 Matthew Collins
//
// 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
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 {
2015-10-07 14:36:59 -04:00
let mut set = Set { data: Vec::with_capacity(size) };
for _ in 0..size {
2015-09-07 16:11:00 -04:00
set.data.push(0)
}
set
}
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(&mut 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
}
}