elliotchance / orderedmap

🔃 An ordered map in Go with amortized O(1) for Set, Get, Delete and Len.
MIT License
817 stars 62 forks source link

Benchmarks against CPP Python Java similar data structure #18

Open nikolaydubina opened 3 years ago

nikolaydubina commented 3 years ago

It would be illustrative to compare against other main languages, particularly CPP so that people see if this is a good fit for their project!

soypat commented 1 year ago

Yes! And also would not hurt to include a benchmark against the intrinsic Go native map.