Auto merge of #56039 - ljedrz:sorted_map_upgrades, r=matthewjasper

SortedMap upgrades

- change the impl `From<Iterator<I>>` to `FromIterator<I>`
- make the impls of `Index` and `get` match the ones from `BTreeMap`
- add `is_empty` and `contains_key`
- readability/whitespace fixes
- add a proper `Iterator` implementation
- `impl IntoIterator for &SortedMap`

These changes make `SortedMap` almost a drop-in replacement for `BTreeMap`, at least to the point it is used by `rustc`; what is left is `Entry` API that I'd like to follow this PR with, and possibly implementing `ParallelIterator`.
This commit is contained in:
bors 2018-12-12 10:44:32 +00:00
commit ae3833db3b

View File

@ -10,7 +10,7 @@
use std::borrow::Borrow;
use std::cmp::Ordering;
use std::convert::From;
use std::iter::FromIterator;
use std::mem;
use std::ops::{RangeBounds, Bound, Index, IndexMut};
@ -25,11 +25,10 @@
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default, Debug, RustcEncodable,
RustcDecodable)]
pub struct SortedMap<K: Ord, V> {
data: Vec<(K,V)>
data: Vec<(K, V)>
}
impl<K: Ord, V> SortedMap<K, V> {
#[inline]
pub fn new() -> SortedMap<K, V> {
SortedMap {
@ -82,7 +81,10 @@ pub fn remove(&mut self, key: &K) -> Option<V> {
}
#[inline]
pub fn get(&self, key: &K) -> Option<&V> {
pub fn get<Q>(&self, key: &Q) -> Option<&V>
where K: Borrow<Q>,
Q: Ord + ?Sized
{
match self.lookup_index_for(key) {
Ok(index) => {
unsafe {
@ -96,7 +98,10 @@ pub fn get(&self, key: &K) -> Option<&V> {
}
#[inline]
pub fn get_mut(&mut self, key: &K) -> Option<&mut V> {
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
where K: Borrow<Q>,
Q: Ord + ?Sized
{
match self.lookup_index_for(key) {
Ok(index) => {
unsafe {
@ -122,13 +127,13 @@ pub fn iter(&self) -> ::std::slice::Iter<(K, V)> {
/// Iterate over the keys, sorted
#[inline]
pub fn keys(&self) -> impl Iterator<Item=&K> + ExactSizeIterator {
pub fn keys(&self) -> impl Iterator<Item = &K> + ExactSizeIterator {
self.data.iter().map(|&(ref k, _)| k)
}
/// Iterate over values, sorted by key
#[inline]
pub fn values(&self) -> impl Iterator<Item=&V> + ExactSizeIterator {
pub fn values(&self) -> impl Iterator<Item = &V> + ExactSizeIterator {
self.data.iter().map(|&(_, ref v)| v)
}
@ -137,6 +142,11 @@ pub fn len(&self) -> usize {
self.data.len()
}
#[inline]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
#[inline]
pub fn range<R>(&self, range: R) -> &[(K, V)]
where R: RangeBounds<K>
@ -207,8 +217,11 @@ pub fn insert_presorted(&mut self, mut elements: Vec<(K, V)>) {
/// Looks up the key in `self.data` via `slice::binary_search()`.
#[inline(always)]
fn lookup_index_for(&self, key: &K) -> Result<usize, usize> {
self.data.binary_search_by(|&(ref x, _)| x.cmp(key))
fn lookup_index_for<Q>(&self, key: &Q) -> Result<usize, usize>
where K: Borrow<Q>,
Q: Ord + ?Sized
{
self.data.binary_search_by(|&(ref x, _)| x.borrow().cmp(key))
}
#[inline]
@ -247,38 +260,54 @@ fn range_slice_indices<R>(&self, range: R) -> (usize, usize)
(start, end)
}
#[inline]
pub fn contains_key<Q>(&self, key: &Q) -> bool
where K: Borrow<Q>,
Q: Ord + ?Sized
{
self.get(key).is_some()
}
}
impl<K: Ord, V> IntoIterator for SortedMap<K, V> {
type Item = (K, V);
type IntoIter = ::std::vec::IntoIter<(K, V)>;
fn into_iter(self) -> Self::IntoIter {
self.data.into_iter()
}
}
impl<K: Ord, V, Q: Borrow<K>> Index<Q> for SortedMap<K, V> {
impl<'a, K, Q, V> Index<&'a Q> for SortedMap<K, V>
where K: Ord + Borrow<Q>,
Q: Ord + ?Sized
{
type Output = V;
fn index(&self, index: Q) -> &Self::Output {
let k: &K = index.borrow();
self.get(k).unwrap()
fn index(&self, key: &Q) -> &Self::Output {
self.get(key).expect("no entry found for key")
}
}
impl<K: Ord, V, Q: Borrow<K>> IndexMut<Q> for SortedMap<K, V> {
fn index_mut(&mut self, index: Q) -> &mut Self::Output {
let k: &K = index.borrow();
self.get_mut(k).unwrap()
impl<'a, K, Q, V> IndexMut<&'a Q> for SortedMap<K, V>
where K: Ord + Borrow<Q>,
Q: Ord + ?Sized
{
fn index_mut(&mut self, key: &Q) -> &mut Self::Output {
self.get_mut(key).expect("no entry found for key")
}
}
impl<K: Ord, V, I: Iterator<Item=(K, V)>> From<I> for SortedMap<K, V> {
fn from(data: I) -> Self {
let mut data: Vec<(K, V)> = data.collect();
impl<K: Ord, V> FromIterator<(K, V)> for SortedMap<K, V> {
fn from_iter<T: IntoIterator<Item = (K, V)>>(iter: T) -> Self {
let mut data: Vec<(K, V)> = iter.into_iter().collect();
data.sort_unstable_by(|&(ref k1, _), &(ref k2, _)| k1.cmp(k2));
data.dedup_by(|&mut (ref k1, _), &mut (ref k2, _)| {
k1.cmp(k2) == Ordering::Equal
});
SortedMap {
data
}