代码搜索:PcB 开发教程
找到约 10,000 项符合「PcB 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/143548/12865799
h brender.h
/////////////////////////////////////////////////////////////////////////////////
//
// BRender.h: interface for the BRender class.
//
////////////////////////////////////////////////////////////
www.eeworm.com/read/330760/12870040
cpp 9.cpp
操作系统课程设计_进程调度演示源程序
2007-12-05 22:04:22 本文已公布到博客频道校园·教育分类
操作系统课程设计_进程调度演示源程序
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
typedef struct node
{
char name[10]; /*进程标识符*/
www.eeworm.com/read/330230/12905863
txt dd.txt
#include
#include
#include
#include
#include
#define P_NUM 5
#define P_TIME 50
enum state{
ready,
execute,
block,
finish
}
www.eeworm.com/read/328850/12998196
java example.java
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ListIterator;
import java.util.
www.eeworm.com/read/328850/12998200
java queue.java
import java.util.*;
public class Queue {
private Vector vReady; //继续队列
private Vector vWait; //等待队列
private Vector vSupport; //后备队列
private Vector vHan
www.eeworm.com/read/242168/13091298
cpp spooling.cpp
#include
#include
#include
#include
struct pcb{ /*进程控制块PCB*/
int status; /*状态*/
int length; /*进程长度*/
}*PCB[3];