Dynamically expanding arena in C++

Поділитися
Вставка
  • Опубліковано 11 тра 2024
  • This is a continuation of a previous episode where I have covered a technique for memory management called memory arena. There was one inherited problem - our arenas couldn't grow. Thus, running out of space in one memory arena would cause your application to crash. In this video I solved that particular problem by making them grow dynamically with a help of a doubly linked list data structure.
    The code could be found here: github.com/isnastish/mylib?ta...
  • Наука та технологія

КОМЕНТАРІ • 4

  • @LeilaPasha-ky1rx
    @LeilaPasha-ky1rx 22 дні тому +2

    These kinds of videos are absolutely hidden gems of this platform.

  • @offlinemark
    @offlinemark 15 днів тому +1

    great work, love to see it!