dynamic-array
There are 152 repositories under dynamic-array topic.
DanielGibson/Snippets
(Hopefully) useful code snippets and header-only libs
camel-cdr/cauldron
A collection of single-file C libraries. (generic containers, random number generation, argument parsing and other functionalities)
jibsen/scv
ANSI C implementation of dynamic array, with interface similar to C++ std::vector
luisllamasbinaburo/Arduino-List
Librería de Arduino que implementa un array dinámico
rswinkle/CVector
A C vector library similar to the C++ STL vector
micro-gl/micro-containers
Headers Only C++11 Containers library. No standard library is required.
elijahkash/libft
'School 42' project. C library with my own implementation of some useful functions and modules.
Colin-b/pyxelrest
Query REST APIs using Microsoft Excel User Defined Functions, VBA or Python functions
NickHackman/C_Vector
A header only library written in C that resembles C++ std::vector more commonly known as a dynamic array
Enes1313/DataStructures
Generic data structures with C. There are implementation of Circular buffer, Linked List, Dynamic Array, Stack, Queue.
maluoi/header-libs
Collection of single header libraries I've written. C++ dynamic array and hashmap, runtime and compile time hashing functions, and a .ply 3d file format loader.
dssgabriel/vec
A fast, generic, contiguous growable array type written in pure C.
Amirparsa-Sal/Data-Structure-Algorithms
My personal experiences in practicing data structures and algorithms.
bamless/extlib
c extended library
farukalpay/DynamicArray
This library implements a std::vector like Dynamic Array data structure in C, allowing for the creation, modification, and manipulation of an array whose size can be dynamically adjusted during runtime.
Hysperr/data-structure-code-reference
(OLD) Data structures & abstract data types in C++
lvntky/ccontainer
Comprehensive STB style header-only library of data structures implemented in C
israel-lugo/tsarray
Generic type-safe dynamic array library for C
waizwafiq/Data_Structures
This is just a repository to track my progress on learning Data Structures using Java. Feel free to make use of this repository!
bamless/cvector
A C99 implementation of a growable array that mimics C++ std::vector
mobius3/naughty-buffers
C library providing a buffer that can automatically grow
otuemre/dsa-Java
A comprehensive collection of data structures and algorithms implemented in Java, with detailed explanations for each concept. This project was inspired by Bro Code, serving as a hands-on reference for learning and mastering fundamental data structures and algorithms in Java.
vslapik/ugeneric
Pile of utilities around ugeneric_t type.
kshitij-murabatte/data-structures
C++ implementation of various data structures.
rahogaboom/daa
Dynamic Array Allocator C/C++ - a C++ header file only library
RaulCotar/rayalloc
What if your memory allocator was also your dynamic array library?
robbypambudi/Struktur-Data
Kumpulan tugas dan latihan mata kuliah Struktur Data - Institut Teknologi Sepuluh Nopember
WohlSoft/PtrList
A vector-like container class which stores elements as array of pointers to each element
arfin-parween/Amortized-analysis
This Repository contains topics related to Amortized Analysis. Amortized analysis is like budgeting for algorithms. Instead of focusing on the worst-case scenario for each operation, it looks at the overall cost of a sequence of operations.
DerEasy/DynarrLO
Dynamic Array implementation focused on low overhead in C.
edadma/dynamic_array.h
Reference-counted dynamic arrays for C. Lock-free performance, cross-platform compatibility, single header library.
EimaMei/c-vector
A simple header-only implementation of a dynamic array (vector) in C
skullchap/buf
ANSI C89 dynamic buffer lib + code generator macros to help build custom vectors/dynamic array like wrappers and etc.
taharachedi/Custom_Dynamic_Array_Library-CPP
A C++ template-based dynamic array implementation offering essential operations such as insertion, deletion, resizing, searching, and reversal.
werbenhu/cstl
Common Datastructure Library for C language.
zeusdeux/c-libs
stb style single header libs for basic utilities in C programs such string view, arena allocator, gap buffer, etc.