- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在编写一个先到先得的调度算法。我相信我有正确的算法,并且正在按照我的流程列表的正确顺序和时间处理作业。我唯一的问题是它是如何输出到我的输出文件的。除了列表中的第一个作业外,所有其他作业名称都在正确输出。
这是我的头文件:fcfs.h
#ifndef FUNCTION_H
#define FUNCTION_H
//---------------------------------------------------------------------------
// STRUCTURE THAT HOLDS CPU INFORMATION |
//--------------------------------------------------------------------------
// Struct that simulates the cpu running, cpu1 being the cpu currently running
// tells what the clock pulse is, its current job, and whether or not it is
// occupied
struct cpu
{
int clock_pulse;
struct processes* job;
bool occupied;
}cpu1 = {0, NULL, false};
//---------------------------------------------------------------------------
// FUNCTIONS FOR CPU |
//--------------------------------------------------------------------------
void increment_clock_pulse(); // increments clock_pulse by 1
bool is_cpu_occupied(); // returns true if cpu is occupied, false otherwise
void check_arrivals(); // changes cpu1 state and waiting queue
//---------------------------------------------------------------------------
// STRUCTURE THAT HOLDS INFORMATION FOR PROCESS QUEUE |
//--------------------------------------------------------------------------
// Structure that holds individual nodes for each process in the waiting
// queue. Holds process name, arrival time, service time, priority level
struct processes
{
char name[10];
int arrival_time;
int service_time;
int priority_level;
struct processes *next;
};
struct processes *head = NULL; // instance of processes that points to beginning
struct processes *rear = NULL; // instance of processes that points to end
//---------------------------------------------------------------------------
// BASIC FUNCTIONS FOR LINKED LIST QUEUE |
//--------------------------------------------------------------------------
void enqueue(char *n, int a, int s, int p); // places process at the back of the queue
void dequeue(); // removes the front of the queue
void print_list(); // prints out the list of processes
bool is_empty(); // returns true if empty, false if not
//---------------------------------------------------------------------------
// FUNCTION FOR READING FILE INTO QUEUE |
//--------------------------------------------------------------------------
void fill_array(char *file); // fills in the queue from file input
void output(); // outputs the jobs into output.txt, creates it if it doesn't exist
#endif
这是我的实现文件:fcfs.c
#include "stdbool.h"
#include "string.h"
#include "stdio.h"
#include "stdlib.h"
#include "fcfs.h"
//---------------------------------------------------------------------------
// FUNCTIONS FOR CPU |
//--------------------------------------------------------------------------
// increments the clock pulse by one
void increment_clock_pulse()
{
cpu1.clock_pulse++;
}
// returns true if cpu is occupied, false if not
bool is_cpu_occupied()
{
return cpu1.occupied;
}
// checks the queue if there are jobs ready to be serviced
void check_arrivals()
{
// if job is ready to be serviced and if there is not already a job in the CPU
if(head->arrival_time <= cpu1.clock_pulse && !cpu1.occupied)
{
cpu1.occupied = true; // changes the CPU to occupied
cpu1.job = head; // gives the CPU the next job
dequeue(); // dispatches the previous job from the queue
}
}
//---------------------------------------------------------------------------
// BASIC FUNCTIONS FOR LINKED LIST QUEUE |
//--------------------------------------------------------------------------
// Funtcion the takes in a string and 3 integers for its input
// and inserts the data into the queue
void enqueue(char *n, int a, int s, int p)
{
struct processes *temp = (struct processes*)malloc(sizeof(struct processes));
strcpy(temp->name, n);
temp->arrival_time = a;
temp->service_time = s;
temp->priority_level = p;
temp->next = NULL;
if(head == NULL && rear == NULL){
head = rear = temp;
return;
}
rear->next = temp;
rear = temp;
}
// Function that dequeues the first item in the queue and then moves the
// queue forward
void dequeue()
{
struct processes* temp = head;
if(head == NULL) {
printf("Queue is Empty\n");
return;
}
if(head == rear) {
head = rear = NULL;
}
else {
head = head->next;
}
free(temp);
}
// Function that prints out the current queue
void print_list()
{
struct processes *ptr = head;
printf("\n[ ");
while(ptr != NULL){
printf("(%s %d %d %d) ",ptr->name, ptr->arrival_time,
ptr->service_time, ptr->priority_level);
ptr = ptr->next;
}
printf(" ]");
}
// Returns true if the queue is empty, false if it is not
bool is_empty()
{
return head == NULL;
}
//---------------------------------------------------------------------------
// FUNCTION FOR READING FILE INTO QUEUE |
//--------------------------------------------------------------------------
// Function that fills in the queue, takes in an argument that is the
// name of the file that contains the processes
void fill_array(char *file)
{
FILE *fp; // File pointer
fp = fopen(file, "r"); // opens the file to read processes
// checks to see whether or not fopen() is successful
if (fp == NULL)
{
printf("Error while opening file");
exit(1);
}
// reads in data until End of File
int a, s, p;
char n[10];
while(feof(fp)==0)
{
fscanf(fp, "%s %d %d %d", n, &a, &s, &p);
enqueue(n, a, s, p);
}
fclose(fp);
}
void output()
{
FILE *fp;
fp = fopen("output.txt", "a");
fprintf(fp, "%s %d %d \n", cpu1.job->name, (cpu1.clock_pulse - cpu1.job->arrival_time), cpu1.clock_pulse);
fclose(fp);
}
还有我的驱动文件:main.c
#include "stdbool.h"
#include "string.h"
#include "stdio.h"
#include "fcfs.c"
int main()
{
char file[20]; // buffer for file name
printf("Please enter your file name: "); // prompts user for file name
scanf("%s", file);
fill_array(file); // fills array from file
// Beginning of the FCFS Algorithm
while(!is_empty())
{
if(cpu1.occupied) // If CPU is busy
{
if(cpu1.job->service_time == 0) // If current job in CPU is done CPU changes to not busy
{
output(); // outputs job to file when job is finished
cpu1.occupied = false;
}
}
check_arrivals(); // checks for arrivals in the waiting queue
if(cpu1.occupied) // If the CPU is occupied job is not done
{
cpu1.job->service_time--; // decrement service time of current job
}
increment_clock_pulse(); // increment the clock pulse
}
return 0;
}
这是我的输入文件:processes.txt
A0 6 15 4
A1 9 40 6
A2 9 12 9
A3 12 15 4
A4 30 11 2
A5 45 70 1
A6 70 23 9
A7 75 23 5
A8 75 18 7
A9 90 5 6
输出:output.txt
¢ 15 21
A1 52 61
A2 64 73
A3 76 88
A4 69 99
A5 124 169
A6 122 192
A7 140 215
A8 158 233
A9 148 238
每次运行它时,我都会为写入的第一个进程获得不同的字符串,在本例中为 A0。
我的想法是,我将它们从队列错误地传递到 cpu,这给我带来了困惑的垃圾。
我到处找遍了,找不到任何答案。请帮忙!
最佳答案
这里有一个很大的问题,并且考虑到它很可能相关的症状:
// checks the queue if there are jobs ready to be serviced
void check_arrivals()
{
// if job is ready to be serviced and if there is not already a job in the CPU
if(head->arrival_time <= cpu1.clock_pulse && !cpu1.occupied)
{
cpu1.occupied = true; // changes the CPU to occupied
cpu1.job = head; // gives the CPU the next job
dequeue(); // dispatches the previous job from the queue
}
}
您存储 head
的值,然后调用 dequeue()
删除 head
内存。cpu1.job
现在指向未分配的内存 => 未定义的行为
不过,程序“几乎”运行良好,所以这只是内存所有权的问题。我建议更改您的 cpu
数据结构,以便能够按如下方式保存作业的内存(job
上不再有指针):
struct cpu
{
int clock_pulse;
bool occupied;
struct processes job;
}cpu1 = {0, false, {"",0,0,0,NULL} };
然后更改此代码(以及 job->
现在是 job.
的所有代码)
if(head->arrival_time <= cpu1.clock_pulse && !cpu1.occupied)
{
cpu1.occupied = true; // changes the CPU to occupied
cpu1.job = *head; // gives the CPU the next job
dequeue(); // dispatches the previous job from the queue
}
所以 head
在被释放之前被复制。在这种情况下,您可以确保内存安全。
关于c - C中输出到文件时的随机字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40412472/
我让随机数低于之前的随机数。 if Airplane==1: while icounter0: print "You have enoph fuel to get to New
是否可以生成 BigFloat 的随机数?类型均匀分布在区间 [0,1)? 我的意思是,因为 rand(BigFloat)不可用,看来我们必须使用 BigFloat(rand())为了那个结局。然而,
我正在尝试学习 Kotlin,所以我正在学习互联网上的教程,其中讲师编写了一个与他们配合良好的代码,但它给我带来了错误。 这是错误 Error:(26, 17) Kotlin: Cannot crea
是否有任何方法可以模拟 Collections.shuffle 的行为,而不使比较器容易受到排序算法实现的影响,从而保证结果的安全? 我的意思是不违反类似的契约(Contract)等.. 最佳答案 在
我正在创建一个游戏,目前必须处理一些math.random问题。 我的Lua能力不是那么强,你觉得怎么样 您能制定一个使用 math.random 和给定百分比的算法吗? 我的意思是这样的函数: fu
我想以某种方式让按钮在按下按钮时随机改变位置。我有一个想法如何解决这个问题,其中一个我在下面突出显示,但我已经认为这不是我需要的。 import javafx.application.Applicat
对于我的 Java 类(class),我应该制作一个随机猜数字游戏。我一直陷入过去几天创建的循环中。程序的输出总是无限循环,我不明白为什么。非常感谢任何帮助。 /* This program wi
我已经查看了涉及该主题的一些其他问题,但我没有在任何地方看到这个特定问题。我有一个点击 Web 元素的测试。我尝试通过 ID 和 XPath 引用它,并使用 wait.until() 等待它变得可见。
我在具有自定义类的字典和列表中遇到了该异常。示例: List dsa = (List)Session["Display"]; 当我使用 Session 时,转换工作了 10-20 次..然后它开始抛
需要帮助以了解如何执行以下操作: 每隔 2 秒,这两个数字将生成包含从 1 到 3 的整数值的随机数。 按下“匹配”按钮后,如果两个数字相同,则绿色标签上的数字增加 1。 按下“匹配”按钮后,如果两个
void getS(char *fileName){ FILE *src; if((src = fopen(fileName, "r")) == NULL){ prin
如果我有 2 个具有以下字段的 MySQL 数据库... RequestDB: - Username - Category DisplayDB: - Username - Category
我有以下语句 select random() * 999 + 111 from generate_series(1,10) 结果是: 690,046183290426 983,732229881454
我有一个使用 3x4 CSS 网格构建的简单网站。但出于某种原因,当我在 chrome“检查”中检查页面时,有一个奇怪的空白 显然不在我的代码中的标签。 它会导致网站上出现额外的一行,从而导致出现
我有两个动画,一个是“过渡”,它在悬停时缩小图像,另一个是 animation2,其中图像的不透明度以周期性间隔重复变化。 我有 animation2 在图像上进行,当我将鼠标悬停在它上面时,anim
如图所示post在 C++ 中有几种生成随机 float 的方法。但是我不完全理解答案的第三个选项: float r3 = LO + static_cast (rand()) /( static_c
我正在尝试将类添加到具有相同类的三个 div,但我不希望任何被添加的类重复。 我有一个脚本可以将一个类添加到同时显示的 1、2 或 3 个 div。期望的效果是将图像显示为背景图像,并且在我的样式表中
我有一个基本上可以工作的程序,它创建由用户设置的大小的嵌套列表,并根据用户输入重复。 但是,我希望各个集合仅包含唯一值,目前这是我的输出。 > python3 testv.py Size of you
我正在尝试基于 C# 中的种子生成一个数字。唯一的问题是种子太大而不能成为 int32。有什么方法可以像种子一样使用 long 吗? 是的,种子必须很长。 最佳答案 这是我移植的 Java.Util.
我写这个函数是为了得到一个介于 0 .. 1 之间的伪随机 float : float randomFloat() { float r = (float)rand()/(float)RAN
我是一名优秀的程序员,十分优秀!