Skip to content

reddragon/packed-memory-array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Benchmarks

Implementation-1

Time to insert 107 elements: 0m30.180s*

Implementation-2

Time to insert 107 elements: 0m25.048s*

* (When compiled with -O2 using g++, on a 2.3 GHz Intel Core i7 machine with 8G RAM)

Analysis

  • Complexity of an insert: O(log2n) (amortized)

  • Complexity of find (binary search): O(log2n) (worst-case)

About

A simple implementation of the packed memory array

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published