TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Common libraries and data structures for C

24 pointsby janselmanover 4 years ago

2 comments

d26900over 4 years ago
That&#x27;s a cool library! Well done!<p>I made something similar to it being inspired by the C++ standard library. But it is for C89:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;d26900&#x2F;JamaisVu" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;d26900&#x2F;JamaisVu</a><p>I use tombstones for my hash table (unordered_map) though.<p>Another drawback of my lib: for each hash table entry, I allocate an extra byte for the tombstones.
评论 #26112113 未加载
评论 #26110169 未加载
rurbanover 4 years ago
Similar to mine <a href="https:&#x2F;&#x2F;github.com&#x2F;rurban&#x2F;ctl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rurban&#x2F;ctl</a><p>But mine are very close to the STL with generic iterators&#x2F;ranges and algorithms over containers.