Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.79 KB

File metadata and controls

38 lines (31 loc) · 1.79 KB

SortedList v0.2.1 - Benchmark Tests and Results

This benchmark result is generated using Criterion.rs.

Binary search random element

Description: Given a sorted list containing n random i32 numbers, binary searches a random number in the sorted list. img

Get random element

Description: Given a sorted list containing n random i32 numbers, access the sorted list at a random index. img

Insert random element

Description: Insert n random i32 numbers to an empty sorted list. img

Remove first element

Description: Given a sorted list containing n random i32 numbers, remove the first element till empty. img

Remove last element

Description: Given a sorted list containing n random i32 numbers, remove the last element till empty. img

Remove middle element

Description: Given a sorted list containing n random i32 numbers, remove the middle element till empty. img

Remove random element

Description: Given a sorted list containing n random i32 numbers, remove a random element from the list till empty. img