top of page
Search

Dynamic Memory Allocator

  • Writer: Justin Zhang
    Justin Zhang
  • Dec 15, 2022
  • 1 min read

I created a dynamic memory allocator with implementations of functions such as malloc, free, realloc, and memalign. It is capable of allocating a pointer that is 32 bit aligned and a min block size of 32.

This implementation makes use of segregated free lists which are circularly doubly linked lists. Each list represents a size value range equal to the size of the free block stored in the list.

 
 
 

Recent Posts

See All
CNN vs FNN

This program was an analysis of a CNN vs FNN on various reinforcement algorithms. It made use of algorithms such as Fitted Q iteration,...

 
 
 

Comments


  • LinkedIn
  • github logo

©2021 by Justin Zhang. Proudly created with Wix.com

bottom of page