代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/175592/6341508
c quc.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341612
c qus.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/494525/6377226
cc dispatcher.cc
/*
* Copyright (C) 2001 by Holger Karl
* This file is for internal use only.
*
* Written by: Holger Karl
*
* Time-stamp:
*/
#include "dispatche
www.eeworm.com/read/493225/6398822
java fifo.java
package cahe;
import java.util.LinkedList;
import java.util.Queue;
public class FIFO
{
private Queue ff=new LinkedList();
public FIFO()
{
ff.clear();
}
//入队列
p
www.eeworm.com/read/490890/6445142
h seqqueue.h
#include"stdio.h"
#include"stdlib.h"
typedef struct
{
DataTypeQ queue[MaxQueueSize];
int rear;
int front;
int count;
}SeqQueue;
void QueueInitiate( SeqQueue *Q )
{
Q->rear = 0
www.eeworm.com/read/488736/6485071
cpp breadth first search.cpp
#include
#include
#define MAX 20
#define WHITE 0
#define GRAY 1
#define BLACK 2
#define INFINITY 999999
#define NIL -1
int *queue , rear;
int adjMatrix[MAX][MAX];
void
www.eeworm.com/read/487633/6506824
txt 新建 文本文档.txt
操作系统,模拟进程管理之PCB块管理法,C语言实现
使用了PCB进行进程管理控制,建立三个基本的队列:等待、执行、阻塞进行模拟
操作系统的进程管理,模拟进程的调度,模拟用户的创建、执行、阻塞、挂起、唤醒等操作
最近要准备准备操作系统考试,所以放一个程序跟大家分享
/*
*yctc cg
*/
#include "stdio.h"
#include "dos.h"
#inc ...
www.eeworm.com/read/487089/6523456
h msgq.h
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Workroo
www.eeworm.com/read/486654/6524288
cpp 2080.cpp
/* This Code is Submitted by wywcgs for Problem 2080 on 2005-11-12 at 12:15:56 */
#include
#include
const int MAX = 10240;
const int INFINITE = 10000000;
class Queue {
www.eeworm.com/read/486654/6524668
cpp 1083.cpp
/* This Code is Submitted by wywcgs for Problem 1083 on 2006-01-09 at 13:37:48 */
#include
#include
#include
using namespace std;
const int MAX = 128;
bool space[MAX