]> git.lizzy.rs Git - rust.git/commitdiff
dlist: Add .rotate_to_front(), .rotate_to_back()
authorblake2-ppc <blake2-ppc>
Sun, 21 Jul 2013 17:31:40 +0000 (19:31 +0200)
committerblake2-ppc <blake2-ppc>
Sun, 21 Jul 2013 17:31:40 +0000 (19:31 +0200)
Add methods to move back element to front or front element to back,
without reallocating nodes.

src/libextra/dlist.rs

index 9e8982ecf8d619f549df16985f82e4d53c709e19..189f20c974011281d8d728933e659860fe65ab17 100644 (file)
@@ -258,6 +258,26 @@ pub fn new() -> DList<T> {
         DList{list_head: None, list_tail: Rawlink::none(), length: 0}
     }
 
+    /// Move the last element to the front of the list.
+    ///
+    /// If the list is empty, do nothing.
+    #[inline]
+    pub fn rotate_to_front(&mut self) {
+        do self.pop_back_node().map_consume |tail| {
+            self.push_front_node(tail)
+        };
+    }
+
+    /// Move the first element to the back of the list.
+    ///
+    /// If the list is empty, do nothing.
+    #[inline]
+    pub fn rotate_to_back(&mut self) {
+        do self.pop_front_node().map_consume |head| {
+            self.push_back_node(head)
+        };
+    }
+
     /// Add all elements from `other` to the end of the list
     ///
     /// O(1)
@@ -688,6 +708,29 @@ fn test_prepend() {
         }
     }
 
+    #[test]
+    fn test_rotate() {
+        let mut n = DList::new::<int>();
+        n.rotate_to_back(); check_links(&n);
+        assert_eq!(n.len(), 0);
+        n.rotate_to_front(); check_links(&n);
+        assert_eq!(n.len(), 0);
+
+        let v = ~[1,2,3,4,5];
+        let mut m = list_from(v);
+        m.rotate_to_back(); check_links(&m);
+        m.rotate_to_front(); check_links(&m);
+        assert_eq!(v.iter().collect::<~[&int]>(), m.iter().collect());
+        m.rotate_to_front(); check_links(&m);
+        m.rotate_to_front(); check_links(&m);
+        m.pop_front(); check_links(&m);
+        m.rotate_to_front(); check_links(&m);
+        m.rotate_to_back(); check_links(&m);
+        m.push_front(9); check_links(&m);
+        m.rotate_to_front(); check_links(&m);
+        assert_eq!(~[3,9,5,1,2], m.consume_iter().collect());
+    }
+
     #[test]
     fn test_iterator() {
         let m = generate_test();