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.

SDSL – Succinct Data Structure Library for C++

79 pointsby vsbuffaloover 9 years ago

5 comments

lorenzhsover 9 years ago
The SDSL is very easy to use, and its versatility is quite amazing. It&#x27;s also rather interesting to look at the list of papers that cite it: <a href="https:&#x2F;&#x2F;scholar.google.com&#x2F;scholar?cites=6772708594529960585" rel="nofollow">https:&#x2F;&#x2F;scholar.google.com&#x2F;scholar?cites=6772708594529960585</a> and <a href="https:&#x2F;&#x2F;scholar.google.com&#x2F;scholar?q=SDSL-lite" rel="nofollow">https:&#x2F;&#x2F;scholar.google.com&#x2F;scholar?q=SDSL-lite</a>
jbandela1over 9 years ago
Cool library. Any thoughts on getting it to work with Visual C++ 2015. It now has pretty decent C++11 support, you already use CMake, and this library seems like something that is inherently OS neutral.<p>Even when I am ultimately deploying on Linux, I will often develop and debug my os-independent logic using Visual C++ on Windows and then when that is working well, recompile using g++ or clang++.
评论 #10159524 未加载
olistovellover 9 years ago
Very nice! Why did you choose GPLv3 instead of LGPLv3?
评论 #10158322 未加载
评论 #10158398 未加载
jherikoover 9 years ago
this looks very cool but it is a shame about the license and a shame about the code style.<p>STL is a poor exemplar to follow - its a real wasteland of a library and very deficient compared to libraries for other modern languages.<p>however i will now go and learn these things and reinvent some wheels to make myself a better programmer.<p>thanks. :)
ameliusover 9 years ago
How does it compare in terms of memory and speed, to the GNU implementation of STL?