Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Lab. Assignment #2 First Fit Algorithm Objectives: Learn how First-Fit algorithm work in memory management. Learn how to implement First-Fit lgorithm inC Description: Write a

image text in transcribed

Lab. Assignment #2 First Fit Algorithm Objectives: Learn how First-Fit algorithm work in memory management. Learn how to implement First-Fit lgorithm inC Description: Write a C++ program that will implement First-fit, memory management algorithm Your program must do the following: Input the memory size and the number and sizes of all the partitions (limit the max number of the partitions to 5). Input the job list that includes: 1. 2. Job's name Job's size For each job you should create in your program a data structure that will include the job status (Run/Wait) and the partition number (if the job was allocated Calculate and display initial memory allocation. Display the memory waste and the jobs that could not be allocated and have to wait. 3. 4. 5. Code Quality Requirement: 1. Do not put every single logic in the main() function. 2. You must use functions to separate your program's logic into smaller readable pieces. 3. You must use descriptive variable names. Don't use int b 5. What's b?! It's okay to use i or j or any other letters for loops (only loops) 4. You must write meaningful comments to explain your code

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

3319234609, 978-3319234601

More Books

Students also viewed these Databases questions