mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Fix and test implementation of BTreeMap's first_entry, last_entry, pop_first, pop_last
This commit is contained in:
parent
b685985ea4
commit
4f6661a18d
@ -675,13 +675,15 @@ impl<K: Ord, V> BTreeMap<K, V> {
|
||||
T: Ord,
|
||||
K: Borrow<T>,
|
||||
{
|
||||
match self.length {
|
||||
0 => None,
|
||||
_ => Some(OccupiedEntry {
|
||||
handle: self.root.as_mut().first_kv(),
|
||||
let front = self.root.as_mut().first_leaf_edge();
|
||||
if let Ok(kv) = front.right_kv() {
|
||||
Some(OccupiedEntry {
|
||||
handle: kv.forget_node_type(),
|
||||
length: &mut self.length,
|
||||
_marker: PhantomData,
|
||||
}),
|
||||
})
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
@ -736,13 +738,15 @@ impl<K: Ord, V> BTreeMap<K, V> {
|
||||
T: Ord,
|
||||
K: Borrow<T>,
|
||||
{
|
||||
match self.length {
|
||||
0 => None,
|
||||
_ => Some(OccupiedEntry {
|
||||
handle: self.root.as_mut().last_kv(),
|
||||
let back = self.root.as_mut().last_leaf_edge();
|
||||
if let Ok(kv) = back.left_kv() {
|
||||
Some(OccupiedEntry {
|
||||
handle: kv.forget_node_type(),
|
||||
length: &mut self.length,
|
||||
_marker: PhantomData,
|
||||
}),
|
||||
})
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,11 @@ fn test_basic_large() {
|
||||
assert_eq!(map.len(), i + 1);
|
||||
}
|
||||
|
||||
assert_eq!(map.first_key_value(), Some((&0, &0)));
|
||||
assert_eq!(map.last_key_value(), Some((&(size - 1), &(10 * (size - 1)))));
|
||||
assert_eq!(map.first_entry().unwrap().key(), &0);
|
||||
assert_eq!(map.last_entry().unwrap().key(), &(size - 1));
|
||||
|
||||
for i in 0..size {
|
||||
assert_eq!(map.get(&i).unwrap(), &(i * 10));
|
||||
}
|
||||
|
@ -487,21 +487,26 @@ fn test_first_last() {
|
||||
a.insert(2);
|
||||
assert_eq!(a.first(), Some(&1));
|
||||
assert_eq!(a.last(), Some(&2));
|
||||
a.insert(3);
|
||||
for i in 3..=12 {
|
||||
a.insert(i);
|
||||
}
|
||||
assert_eq!(a.first(), Some(&1));
|
||||
assert_eq!(a.last(), Some(&3));
|
||||
|
||||
assert_eq!(a.len(), 3);
|
||||
assert_eq!(a.last(), Some(&12));
|
||||
assert_eq!(a.pop_first(), Some(1));
|
||||
assert_eq!(a.len(), 2);
|
||||
assert_eq!(a.pop_last(), Some(3));
|
||||
assert_eq!(a.len(), 1);
|
||||
assert_eq!(a.pop_last(), Some(12));
|
||||
assert_eq!(a.pop_first(), Some(2));
|
||||
assert_eq!(a.len(), 0);
|
||||
assert_eq!(a.pop_last(), None);
|
||||
assert_eq!(a.len(), 0);
|
||||
assert_eq!(a.pop_last(), Some(11));
|
||||
assert_eq!(a.pop_first(), Some(3));
|
||||
assert_eq!(a.pop_last(), Some(10));
|
||||
assert_eq!(a.pop_first(), Some(4));
|
||||
assert_eq!(a.pop_first(), Some(5));
|
||||
assert_eq!(a.pop_first(), Some(6));
|
||||
assert_eq!(a.pop_first(), Some(7));
|
||||
assert_eq!(a.pop_first(), Some(8));
|
||||
assert_eq!(a.clone().pop_last(), Some(9));
|
||||
assert_eq!(a.pop_first(), Some(9));
|
||||
assert_eq!(a.pop_first(), None);
|
||||
assert_eq!(a.len(), 0);
|
||||
assert_eq!(a.pop_last(), None);
|
||||
}
|
||||
|
||||
fn rand_data(len: usize) -> Vec<u32> {
|
||||
|
Loading…
Reference in New Issue
Block a user