// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! A standard linked list use core::prelude::*; #[deriving(Eq)] pub enum List { Cons(T, @List), Nil, } #[deriving(Eq)] pub enum MutList { MutCons(T, @mut MutList), MutNil, } /// Create a list from a vector pub fn from_vec(v: &[T]) -> @List { vec::foldr(v, @Nil::, |h, t| @Cons(*h, t)) } /** * Left fold * * Applies `f` to `u` and the first element in the list, then applies `f` to * the result of the previous call and the second element, and so on, * returning the accumulated result. * * # Arguments * * * ls - The list to fold * * z - The initial value * * f - The function to apply */ pub fn foldl(z: T, ls: @List, f: &fn(&T, &U) -> T) -> T { let mut accum: T = z; do iter(ls) |elt| { accum = f(&accum, elt);} accum } /** * Search for an element that matches a given predicate * * Apply function `f` to each element of `v`, starting from the first. * When function `f` returns true then an option containing the element * is returned. If `f` matches no elements then none is returned. */ pub fn find(ls: @List, f: &fn(&T) -> bool) -> Option { let mut ls = ls; loop { ls = match *ls { Cons(ref hd, tl) => { if f(hd) { return Some(*hd); } tl } Nil => return None } }; } /// Returns true if a list contains an element with the given value pub fn has(ls: @List, elt: T) -> bool { for each(ls) |e| { if *e == elt { return true; } } return false; } /// Returns true if the list is empty pub fn is_empty(ls: @List) -> bool { match *ls { Nil => true, _ => false } } /// Returns the length of a list pub fn len(ls: @List) -> uint { let mut count = 0u; iter(ls, |_e| count += 1u); count } /// Returns all but the first element of a list pub fn tail(ls: @List) -> @List { match *ls { Cons(_, tl) => return tl, Nil => fail!("list empty") } } /// Returns the first element of a list pub fn head(ls: @List) -> T { match *ls { Cons(copy hd, _) => hd, // makes me sad _ => fail!("head invoked on empty list") } } /// Appends one list to another pub fn append(l: @List, m: @List) -> @List { match *l { Nil => return m, Cons(copy x, xs) => { let rest = append(xs, m); return @Cons(x, rest); } } } /* /// Push one element into the front of a list, returning a new list /// THIS VERSION DOESN'T ACTUALLY WORK fn push(ll: &mut @list, vv: T) { ll = &mut @cons(vv, *ll) } */ /// Iterate over a list pub fn iter(l: @List, f: &fn(&T)) { let mut cur = l; loop { cur = match *cur { Cons(ref hd, tl) => { f(hd); tl } Nil => break } } } /// Iterate over a list pub fn each(l: @List, f: &fn(&T) -> bool) -> bool { let mut cur = l; loop { cur = match *cur { Cons(ref hd, tl) => { if !f(hd) { return false; } tl } Nil => { return true; } } } } impl MutList { /// Iterate over a mutable list pub fn each(@mut self, f: &fn(&mut T) -> bool) -> bool { let mut cur = self; loop { let borrowed = &mut *cur; cur = match *borrowed { MutCons(ref mut hd, tl) => { if !f(hd) { return false; } tl } MutNil => break } } return true; } } #[cfg(test)] mod tests { use list::*; use list; use core::option; #[test] fn test_is_empty() { let empty : @list::List = from_vec([]); let full1 = from_vec([1]); let full2 = from_vec(['r', 'u']); assert!(is_empty(empty)); assert!(!is_empty(full1)); assert!(!is_empty(full2)); } #[test] fn test_from_vec() { let l = from_vec([0, 1, 2]); assert_eq!(head(l), 0); let tail_l = tail(l); assert_eq!(head(tail_l), 1); let tail_tail_l = tail(tail_l); assert_eq!(head(tail_tail_l), 2); } #[test] fn test_from_vec_empty() { let empty : @list::List = from_vec([]); assert_eq!(empty, @list::Nil::); } #[test] fn test_foldl() { fn add(a: &uint, b: &int) -> uint { return *a + (*b as uint); } let l = from_vec([0, 1, 2, 3, 4]); let empty = @list::Nil::; assert_eq!(list::foldl(0u, l, add), 10u); assert_eq!(list::foldl(0u, empty, add), 0u); } #[test] fn test_foldl2() { fn sub(a: &int, b: &int) -> int { *a - *b } let l = from_vec([1, 2, 3, 4]); assert_eq!(list::foldl(0, l, sub), -10); } #[test] fn test_find_success() { fn match_(i: &int) -> bool { return *i == 2; } let l = from_vec([0, 1, 2]); assert_eq!(list::find(l, match_), option::Some(2)); } #[test] fn test_find_fail() { fn match_(_i: &int) -> bool { return false; } let l = from_vec([0, 1, 2]); let empty = @list::Nil::; assert_eq!(list::find(l, match_), option::None::); assert_eq!(list::find(empty, match_), option::None::); } #[test] fn test_has() { let l = from_vec([5, 8, 6]); let empty = @list::Nil::; assert!((list::has(l, 5))); assert!((!list::has(l, 7))); assert!((list::has(l, 8))); assert!((!list::has(empty, 5))); } #[test] fn test_len() { let l = from_vec([0, 1, 2]); let empty = @list::Nil::; assert_eq!(list::len(l), 3u); assert_eq!(list::len(empty), 0u); } #[test] fn test_append() { assert!(from_vec([1,2,3,4]) == list::append(list::from_vec([1,2]), list::from_vec([3,4]))); } }