Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6193483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:07:42+00:00 2026-05-24T03:07:42+00:00

I am trying to learn implementation of Disk Scheduling Algorithms (SCAN and C-SCAN) in

  • 0

I am trying to learn implementation of Disk Scheduling Algorithms (SCAN and C-SCAN) in the C language, can somebody please refer to good sources of implementations of these in the C Language or advise me on programming them on C?

Further Into:-
*Objective is to write a program to optimize disk access to read a non contiguous set of pages on disk to memory, for this, I am performing disk scheduling.

*I would want to instruct the disk on read sequence of the pages

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:07:42+00:00Added an answer on May 24, 2026 at 3:07 am

    The logic for scheduling disk requests in an efficient fashion should be considered in the domain of the disk itself! Optimizing the order you read data from disk sectors is not likely to be portable or efficient.

    However, if you have a file of npages * PAGE_SIZE, you could attempt to improve your applications performance when servicing your own internal reads from disk. Given:

    #define PAGE_SIZE ...
    #define MAX_PAGE_READ ...
    
    struct read_req {
        unsigned int page;
        /* any other book-keeping required */
    };
    

    You could internally sort the requests by page (and optionally coalesce neighbor pages):

    /* qsort-comparer for two read_req structs */
    int cmp_req(const void *a, const void *b)
    {
        unsigned int pageA = ((struct read_req*)a)->page,
                     pageB = ((struct read_req*)b)->page;
        return pageA == pageB ? 0 : pageA > pageB ? 1 : -1;
    }
    
    int service_reads(struct read_req *reqs, size_t nreqs)
    {
        size_t ii = 0;
    
        /* sort read requests in ascending order */
        qsort(reqs, nreqs, sizeof(reqs[0]), cmp_req);
    
        while (ii < nreqs)
        {
            unsigned int start = reqs[ii].page;
            size_t size = 1;
    
            while (++ii < nreqs)
            {
                if (reqs[ii].page != (start + size)) break;
    
                /* expand our read to include the next page,
                 * and break if we've read too much
                 */
                if (++size == MAX_PAGE_READ) break;
            }
    
            your_read_logic(start, size);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to learn MVP pattern with C#... Does anyone know of any particularly good
I'm just starting to learn Objective-C, one thing I'm trying to learn is good
I am trying to learn the content provider implementation and how it works. I
Trying to learn a bit of CSS and I want a horizontal navbar and
Trying to learn a bit about PDO and is going through this tutorial .
Trying to learn about php's arrays today. I have a set of arrays like
In trying to learn how to create objects in ActionScript, I have had no
I´m trying to learn C#, coming from a Python/PHP background, and I´m trying to
I'm trying to learn C. As a C# developer, my IDE is Visual Studio.
I am trying to learn the keyboard shortcuts in Visual Studio in order to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.