C言語の動的int配列ライブラリint_vectorを題材にヒープメモリ管理を学ぶハンズオン用リポジトリ
- malloc realloc freeの正しい使い方を体験する
- 容量倍増アルゴリズムで動的配列を自作しオーバーヘッドを理解する
int_vector.h ヘッダ(API宣言)
int_vector.c 実装本体
main.c 使用例(0–9を格納して出力)
Makefile all run cleanターゲットを用意
make
make run
AddressSanitizer
gcc -fsanitize=address -Wall -Wextra -std=c17 main.c int_vector.c -o intvec_demo
Valgrind
valgrind --leak-check=full ./intvec_demo
MIT