Example skeletons

This commit is contained in:
Stjepan Glavina 2016-10-26 12:45:15 +02:00
parent 0469e69f82
commit c4a9c19292
3 changed files with 1 additions and 0 deletions

0
examples/linked_list.rs Normal file
View File

0
examples/skip_list.rs Normal file
View File

View File

@ -31,6 +31,7 @@ impl<T> Splay<T> where T: Ord + Eq + Clone {
}
}
// #[inline(always)]
fn rotate(&mut self, a: usize, b: usize) {
let p = self.arena[a].parent;