libcdada icon indicating copy to clipboard operation
libcdada copied to clipboard

Basic data structures in C: list, set, map/hashtable, queue... (libstdc++ wrapper)

Results 4 libcdada issues
Sort by recently updated
recently updated
newest added

OpenWrt-libtool: compile: arm-openwrt-linux-g++ -DPACKAGE_NAME=\"LIBCDADA\" -DPACKAGE_TARNAME=\"libcdada\" -DPACKAGE_VERSION=\"v0.5.0\" "-DPACKAGE_STRING=\"LIBCDADA v0.5.0\"" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"http://github.com/msune/libcdada\" -DPACKAGE=\"libcdada\" -DVERSION=\"v0.5.0\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_WCHAR_H=1 -DSTDC_HEADERS=1 -D_ALL_SOURCE=1 -D_DARWIN_C_SOURCE=1 -D_GNU_SOURCE=1 -D_HPUX_ALT_XOPEN_SOCKET_API=1 -D_NETBSD_SOURCE=1 -D_OPENBSD_SOURCE=1 -D_POSIX_PTHREAD_SEMANTICS=1...

bug
build

Dears, A place-holder for a Feature Request for libcdada: currently keys must be fixed length so, for example, strings have to be cast in an array with a known maximum...

feature

As a user, I would like a to have a variant of `cdada_map_t` that is equivalent to [`std::unordered_map`](https://en.cppreference.com/w/cpp/container/unordered_map), which has the following differences: | | map | unordered_map | |-----------------|-----------------...

feature

Hi Marc ( @msune ), Wanted to leave a note here for a feature request for a Patricia Tree / Radix kind of data structure in libcdada. The objective would...