Good collection of libraries for C? [closed]

2020-05-19 00:13发布

I'm looking for a good collection of libraries for ANSI-C, stuff for handling vectors, hash maps, binary tress, string processing, etc.

6条回答
叛逆
2楼-- · 2020-05-19 00:22

You might also find this question useful:

Container Class / Library for C

As well, this book might be interesting:

Mastering Algorithms with C

The full source code is on the CD and it has code for most of those data structures and algorithms.

查看更多
贪生不怕死
3楼-- · 2020-05-19 00:23

check also gnulib's data structures. This library also provides many other features as well as portable layer to ANSI/non-ANSI compilers and POSIX/non-POSIX systems.

查看更多
Ridiculous、
4楼-- · 2020-05-19 00:29

GLUT OpenGL I can recommend for very flexible C (graphics) development

查看更多
Bombasti
5楼-- · 2020-05-19 00:34

Try glib? It's used by GTK+, but it can also be used on other platforms. You can also try Apache APR, which is used by the Apache web server and some of their other C components, or NSPR, which is used by Mozilla projects in C.

查看更多
放荡不羁爱自由
7楼-- · 2020-05-19 00:44

gnu's glib collection. furthermore, it's portable for many platforms.

查看更多
登录 后发表回答