Implementation of a file system with a linked list. A file is divided into several blocks linked on the disk. Each block must have space for data and space for a pointer to the next block. In this project, consider that each block will have the capacity to store char and short int.
operating-system linkedlist dynamic-allocation educational-projects secondary-memory-management space-control
-
Updated
Oct 21, 2025 - Python