Skip to content

goda6565/int_vector_c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

int_vector_c

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published