Topics
Operating System
- Introduction to Operating System (OS)
- Idea of an Operating System
- Windows NT
- LINUX
- File Systems and Its types
- File Operations
- Access Methods and its types
- Allocation Methods
- Concepts Related to Process Management
- Concepts related to memory management
- Basics of Graphical User Interface (GUI)
- Access and Security Aspects of O.S.
Data Structures
C++ Programming
- Introduction to C++ Programming
- Idea Behind Object-Orientated Programming
- Object-orientated programming approach
- Object-Oriented Terms and Concepts
- Classes and Objects
- Constructors and Destructors
- Functions in C + +
- Arrays in C++
- Pointers in C++
- References in C++
- Strings in C++
- Inheritance
- Virtual functions and polymorphism
- Friends in C++
- Operator overloading and type conversions
- Files and Stream
HyperTex Markup Language (HTML)
- Introduction to Allocation Methods
- Contiguous Allocation
- Non-contiguous Allocation
- Indexed Allocation
- Linked Allocation
Allocation Methods
The direct access nature of disks allows us to store many files on the same disk. The main problem now is to allocate space to these files so that disk space is effectively utilized, and files can be quickly accessed.
Contiguous Allocation
The contiguous allocation method requires each file to occupy a set of contiguous (adjoining) addresses on the disk. The contiguous allocation of a file is defined by the disk address of the first block and its length. If the file is n blocks long and starts at location b, then it occupies blocks b, b +1, b + 2, - - - b + n - 1. The directory entry for each file indicates the address of the starting block and the length of the area allocated for this file .
Dynamic Storage Allocation
Note: Disk space is thus a collection of free and used segments. Each segment is a contiguous set of disk blocks. An unallocated segment is called a hole. Disk space consists of allocated blocks and free holes. First-fit, best-fit and worst-fit are most common strategies to select a free hole from the set of available holes:
- First-fit: Allocates the first sufficiently large hole, starting from the beginning or the previous search endpoint.
- Best-fit: Allocates the smallest sufficient hole, requiring a full list search unless sorted by size.
- Worst-fit: Allocates the largest hole, also needing a full list search unless sorted by size.
First-fit and best-fit are more efficient than worst-fit but can cause external fragmentation as files are allocated and deleted.
Compaction
Note: To prevent disk space loss from external fragmentation, users run a repacking routine, copying and reallocating files to create one contiguous free space. A challenge with contiguous allocation is accurately estimating and allocating the required space for new files.
Linked Allocation
In linked allocation, each file is a linked list of disk blocks; the disk blocks may be scattered anywhere on the disc. The directory contains a pointer to the first and last block of the file. Linked allocation is shown in figure
Indexed Allocation
In indexed allocation, all pointers are stored in an index block, with each file having its own index block containing disk block addresses. This method supports access without external fragmentation. Systems may combine contiguous allocation for small files and indexed allocation for larger files, though indexed allocation is more complex.