Struct std::collections::LinkedList
1.0.0 · source · [−]pub struct LinkedList<T> { /* private fields */ }Expand description
A doubly-linked list with owned nodes.
The LinkedList allows pushing and popping elements at either end
in constant time.
A LinkedList with a known list of items can be initialized from an array:
use std::collections::LinkedList;
let list = LinkedList::from([1, 2, 3]);RunNOTE: It is almost always better to use Vec or VecDeque because
array-based containers are generally faster,
more memory efficient, and make better use of CPU cache.
Implementations
impl<T> LinkedList<T>
source
impl<T> LinkedList<T>
sourcepub const fn new() -> LinkedList<T>
const: 1.39.0 · source
pub const fn new() -> LinkedList<T>
const: 1.39.0 · sourcepub fn append(&mut self, other: &mut LinkedList<T>)
source
pub fn append(&mut self, other: &mut LinkedList<T>)
sourceMoves all elements from other to the end of the list.
This reuses all the nodes from other and moves them into self. After
this operation, other becomes empty.
This operation should compute in O(1) time and O(1) memory.
Examples
use std::collections::LinkedList;
let mut list1 = LinkedList::new();
list1.push_back('a');
let mut list2 = LinkedList::new();
list2.push_back('b');
list2.push_back('c');
list1.append(&mut list2);
let mut iter = list1.iter();
assert_eq!(iter.next(), Some(&'a'));
assert_eq!(iter.next(), Some(&'b'));
assert_eq!(iter.next(), Some(&'c'));
assert!(iter.next().is_none());
assert!(list2.is_empty());Runpub fn iter(&self) -> Iter<'_, T>ⓘNotable traits for Iter<'a, T>impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
source
pub fn iter(&self) -> Iter<'_, T>ⓘNotable traits for Iter<'a, T>impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
sourceProvides a forward iterator.
Examples
use std::collections::LinkedList;
let mut list: LinkedList<u32> = LinkedList::new();
list.push_back(0);
list.push_back(1);
list.push_back(2);
let mut iter = list.iter();
assert_eq!(iter.next(), Some(&0));
assert_eq!(iter.next(), Some(&1));
assert_eq!(iter.next(), Some(&2));
assert_eq!(iter.next(), None);Runpub fn iter_mut(&mut self) -> IterMut<'_, T>ⓘNotable traits for IterMut<'a, T>impl<'a, T> Iterator for IterMut<'a, T> type Item = &'a mut T;
source
pub fn iter_mut(&mut self) -> IterMut<'_, T>ⓘNotable traits for IterMut<'a, T>impl<'a, T> Iterator for IterMut<'a, T> type Item = &'a mut T;
sourceProvides a forward iterator with mutable references.
Examples
use std::collections::LinkedList;
let mut list: LinkedList<u32> = LinkedList::new();
list.push_back(0);
list.push_back(1);
list.push_back(2);
for element in list.iter_mut() {
*element += 10;
}
let mut iter = list.iter();
assert_eq!(iter.next(), Some(&10));
assert_eq!(iter.next(), Some(&11));
assert_eq!(iter.next(), Some(&12));
assert_eq!(iter.next(), None);Runpub fn cursor_front(&self) -> Cursor<'_, T>
source
pub fn cursor_front(&self) -> Cursor<'_, T>
sourceProvides a cursor at the front element.
The cursor is pointing to the “ghost” non-element if the list is empty.
pub fn cursor_front_mut(&mut self) -> CursorMut<'_, T>
source
pub fn cursor_front_mut(&mut self) -> CursorMut<'_, T>
sourceProvides a cursor with editing operations at the front element.
The cursor is pointing to the “ghost” non-element if the list is empty.
pub fn cursor_back(&self) -> Cursor<'_, T>
source
pub fn cursor_back(&self) -> Cursor<'_, T>
sourceProvides a cursor at the back element.
The cursor is pointing to the “ghost” non-element if the list is empty.
pub fn cursor_back_mut(&mut self) -> CursorMut<'_, T>
source
pub fn cursor_back_mut(&mut self) -> CursorMut<'_, T>
sourceProvides a cursor with editing operations at the back element.
The cursor is pointing to the “ghost” non-element if the list is empty.
pub fn clear(&mut self)
source
pub fn clear(&mut self)
sourceRemoves all elements from the LinkedList.
This operation should compute in O(n) time.
Examples
use std::collections::LinkedList;
let mut dl = LinkedList::new();
dl.push_front(2);
dl.push_front(1);
assert_eq!(dl.len(), 2);
assert_eq!(dl.front(), Some(&1));
dl.clear();
assert_eq!(dl.len(), 0);
assert_eq!(dl.front(), None);Runpub fn contains(&self, x: &T) -> bool where
T: PartialEq<T>,
1.12.0 · source
pub fn contains(&self, x: &T) -> bool where
T: PartialEq<T>,
1.12.0 · sourceReturns true if the LinkedList contains an element equal to the
given value.
This operation should compute linearly in O(n) time.
Examples
use std::collections::LinkedList;
let mut list: LinkedList<u32> = LinkedList::new();
list.push_back(0);
list.push_back(1);
list.push_back(2);
assert_eq!(list.contains(&0), true);
assert_eq!(list.contains(&10), false);Runpub fn front_mut(&mut self) -> Option<&mut T>
source
pub fn front_mut(&mut self) -> Option<&mut T>
sourceProvides a mutable reference to the front element, or None if the list
is empty.
This operation should compute in O(1) time.
Examples
use std::collections::LinkedList;
let mut dl = LinkedList::new();
assert_eq!(dl.front(), None);
dl.push_front(1);
assert_eq!(dl.front(), Some(&1));
match dl.front_mut() {
None => {},
Some(x) => *x = 5,
}
assert_eq!(dl.front(), Some(&5));Runpub fn back_mut(&mut self) -> Option<&mut T>
source
pub fn back_mut(&mut self) -> Option<&mut T>
sourceProvides a mutable reference to the back element, or None if the list
is empty.
This operation should compute in O(1) time.
Examples
use std::collections::LinkedList;
let mut dl = LinkedList::new();
assert_eq!(dl.back(), None);
dl.push_back(1);
assert_eq!(dl.back(), Some(&1));
match dl.back_mut() {
None => {},
Some(x) => *x = 5,
}
assert_eq!(dl.back(), Some(&5));Runpub fn push_front(&mut self, elt: T)
source
pub fn push_front(&mut self, elt: T)
sourcepub fn pop_front(&mut self) -> Option<T>
source
pub fn pop_front(&mut self) -> Option<T>
sourceRemoves the first element and returns it, or None if the list is
empty.
This operation should compute in O(1) time.
Examples
use std::collections::LinkedList;
let mut d = LinkedList::new();
assert_eq!(d.pop_front(), None);
d.push_front(1);
d.push_front(3);
assert_eq!(d.pop_front(), Some(3));
assert_eq!(d.pop_front(), Some(1));
assert_eq!(d.pop_front(), None);Runpub fn split_off(&mut self, at: usize) -> LinkedList<T>
source
pub fn split_off(&mut self, at: usize) -> LinkedList<T>
sourceSplits the list into two at the given index. Returns everything after the given index, including the index.
This operation should compute in O(n) time.
Panics
Panics if at > len.
Examples
use std::collections::LinkedList;
let mut d = LinkedList::new();
d.push_front(1);
d.push_front(2);
d.push_front(3);
let mut split = d.split_off(2);
assert_eq!(split.pop_front(), Some(1));
assert_eq!(split.pop_front(), None);Runpub fn remove(&mut self, at: usize) -> T
source
pub fn remove(&mut self, at: usize) -> T
sourceRemoves the element at the given index and returns it.
This operation should compute in O(n) time.
Panics
Panics if at >= len
Examples
#![feature(linked_list_remove)]
use std::collections::LinkedList;
let mut d = LinkedList::new();
d.push_front(1);
d.push_front(2);
d.push_front(3);
assert_eq!(d.remove(1), 2);
assert_eq!(d.remove(0), 3);
assert_eq!(d.remove(0), 1);Runpub fn drain_filter<F>(&mut self, filter: F) -> DrainFilter<'_, T, F>ⓘNotable traits for DrainFilter<'_, T, F>impl<'_, T, F> Iterator for DrainFilter<'_, T, F> where
F: FnMut(&mut T) -> bool, type Item = T; where
F: FnMut(&mut T) -> bool,
source
pub fn drain_filter<F>(&mut self, filter: F) -> DrainFilter<'_, T, F>ⓘNotable traits for DrainFilter<'_, T, F>impl<'_, T, F> Iterator for DrainFilter<'_, T, F> where
F: FnMut(&mut T) -> bool, type Item = T; where
F: FnMut(&mut T) -> bool,
sourceF: FnMut(&mut T) -> bool, type Item = T;
Creates an iterator which uses a closure to determine if an element should be removed.
If the closure returns true, then the element is removed and yielded. If the closure returns false, the element will remain in the list and will not be yielded by the iterator.
Note that drain_filter lets you mutate every element in the filter closure, regardless of
whether you choose to keep or remove it.
Examples
Splitting a list into evens and odds, reusing the original list:
#![feature(drain_filter)]
use std::collections::LinkedList;
let mut numbers: LinkedList<u32> = LinkedList::new();
numbers.extend(&[1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15]);
let evens = numbers.drain_filter(|x| *x % 2 == 0).collect::<LinkedList<_>>();
let odds = numbers;
assert_eq!(evens.into_iter().collect::<Vec<_>>(), vec![2, 4, 6, 8, 14]);
assert_eq!(odds.into_iter().collect::<Vec<_>>(), vec![1, 3, 5, 9, 11, 13, 15]);RunTrait Implementations
impl<T> Clone for LinkedList<T> where
T: Clone,
source
impl<T> Clone for LinkedList<T> where
T: Clone,
sourcefn clone(&self) -> LinkedList<T>
source
fn clone(&self) -> LinkedList<T>
sourceReturns a copy of the value. Read more
fn clone_from(&mut self, other: &LinkedList<T>)
source
fn clone_from(&mut self, other: &LinkedList<T>)
sourcePerforms copy-assignment from source. Read more
impl<T> Debug for LinkedList<T> where
T: Debug,
source
impl<T> Debug for LinkedList<T> where
T: Debug,
sourceimpl<T> Default for LinkedList<T>
source
impl<T> Default for LinkedList<T>
sourcefn default() -> LinkedList<T>
source
fn default() -> LinkedList<T>
sourceCreates an empty LinkedList<T>.
impl<T> Drop for LinkedList<T>
source
impl<T> Drop for LinkedList<T>
sourceimpl<'a, T> Extend<&'a T> for LinkedList<T> where
T: 'a + Copy,
1.2.0 · source
impl<'a, T> Extend<&'a T> for LinkedList<T> where
T: 'a + Copy,
1.2.0 · sourcefn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = &'a T>,
source
fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = &'a T>,
sourceExtends a collection with the contents of an iterator. Read more
fn extend_reserve(&mut self, additional: usize)
source
fn extend_reserve(&mut self, additional: usize)
sourceReserves capacity in a collection for the given number of additional elements. Read more
impl<T> Extend<T> for LinkedList<T>
source
impl<T> Extend<T> for LinkedList<T>
sourcefn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = T>,
source
fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = T>,
sourceExtends a collection with the contents of an iterator. Read more
fn extend_reserve(&mut self, additional: usize)
source
fn extend_reserve(&mut self, additional: usize)
sourceReserves capacity in a collection for the given number of additional elements. Read more
impl<T> FromIterator<T> for LinkedList<T>
source
impl<T> FromIterator<T> for LinkedList<T>
sourcefn from_iter<I>(iter: I) -> LinkedList<T> where
I: IntoIterator<Item = T>,
source
fn from_iter<I>(iter: I) -> LinkedList<T> where
I: IntoIterator<Item = T>,
sourceCreates a value from an iterator. Read more
impl<T> Hash for LinkedList<T> where
T: Hash,
source
impl<T> Hash for LinkedList<T> where
T: Hash,
sourceimpl<'a, T> IntoIterator for &'a LinkedList<T>
source
impl<'a, T> IntoIterator for &'a LinkedList<T>
sourceimpl<'a, T> IntoIterator for &'a mut LinkedList<T>
source
impl<'a, T> IntoIterator for &'a mut LinkedList<T>
sourceimpl<T> IntoIterator for LinkedList<T>
source
impl<T> IntoIterator for LinkedList<T>
sourceimpl<T> Ord for LinkedList<T> where
T: Ord,
source
impl<T> Ord for LinkedList<T> where
T: Ord,
sourceimpl<T> PartialEq<LinkedList<T>> for LinkedList<T> where
T: PartialEq<T>,
source
impl<T> PartialEq<LinkedList<T>> for LinkedList<T> where
T: PartialEq<T>,
sourcefn eq(&self, other: &LinkedList<T>) -> bool
source
fn eq(&self, other: &LinkedList<T>) -> bool
sourceThis method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &LinkedList<T>) -> bool
source
fn ne(&self, other: &LinkedList<T>) -> bool
sourceThis method tests for !=.
impl<T> PartialOrd<LinkedList<T>> for LinkedList<T> where
T: PartialOrd<T>,
source
impl<T> PartialOrd<LinkedList<T>> for LinkedList<T> where
T: PartialOrd<T>,
sourcefn partial_cmp(&self, other: &LinkedList<T>) -> Option<Ordering>
source
fn partial_cmp(&self, other: &LinkedList<T>) -> Option<Ordering>
sourceThis method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
source
fn lt(&self, other: &Rhs) -> bool
sourceThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool
source
fn le(&self, other: &Rhs) -> bool
sourceThis method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<T> Eq for LinkedList<T> where
T: Eq,
sourceimpl<T> Send for LinkedList<T> where
T: Send,
sourceimpl<T> Sync for LinkedList<T> where
T: Sync,
sourceAuto Trait Implementations
impl<T> RefUnwindSafe for LinkedList<T> where
T: RefUnwindSafe,
impl<T> Unpin for LinkedList<T>
impl<T> UnwindSafe for LinkedList<T> where
T: UnwindSafe + RefUnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more