代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/285478/8836674
c quc.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/285478/8837101
c qus.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/384553/8860618
cpp 魔王语言解释.cpp
#include
#include
#include
#include
#include
#include
#define STACK_INIT_SIZE 100
#define STACK_INCREMENT 10
struct Stack
{
www.eeworm.com/read/285188/8862952
cpp 9 stepvisit.cpp
#include
#include
#include
#include
#define N 50
#define OVERFLOW 0
#define NULL 0
typedef struct BiTNode
{
char data;
struct BiTNo
www.eeworm.com/read/285034/8874877
java skewheap.java
// Implementation of priority queues/heaps using binary trees.
// (c) 1998, 2001 duane a. bailey
package structure;
import java.util.Iterator;
import java.util.Random;
/**
* An implementation of a p
www.eeworm.com/read/284998/8878393
cpp bankteller.cpp
//: C04:BankTeller.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using a queue and simulated m
www.eeworm.com/read/186955/8888890
h tree.h
#include "stdlib.h"
#include "stdio.h"
#define QUEUE_INIT_SIZE 100 //MAXSIZE 存储空间初始分配量
#define QUEUEINCREMENT 10
#define OK 1
#define ERROR 0
#define OVERFLOW -1
typedef char
www.eeworm.com/read/284715/8906520
java server.java
import javax.microedition.lcdui.*;
import java.io.*;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Vector;
import
www.eeworm.com/read/186649/8920915
cpp screenupdatetimer.cpp
/*
* ============================================================================
* Name : Screenupdatetimer.cpp
* Part of : RecorderExample
* Created : 20.03.2005 by Forum Nokia
* Vers
www.eeworm.com/read/383725/8923350
java pcb.java
public class Pcb {
String name;
public static void main(String[] args)
{
Queue q=new Queue();
Producer p=new Producer(q);
Consumer c=new Consumer(q);
p.start