代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/422655/10622624
java test.java
class Test
{
public static void main(String[] args)
{
Queue q=new Queue();
Producer p=new Producer(q);
Consumer c=new Consumer(q);
p.start();
c.start();
}
}
class Producer ex
www.eeworm.com/read/277578/10624253
makefile
CXX=g++
STRIP=strip
INCLUDE=
CFLAGS=-c -O2
LIBS=-lm
BINARYS=simulation
SOURCES=code.c \
events.c \
queue.c \
ranlib.c \
main.c \
OBJS=code.o \
events.o
www.eeworm.com/read/159519/10644348
java ch6ex2.java
class queue{
private int q[]=new int[100];
private int sloc,rloc;
public queue(){
rloc=0;sloc=0;
}
public void qput(int i){
if(sloc==100)
System.out.println("queue is overflow");
www.eeworm.com/read/277350/10644617
cpp park.cpp
#include "iostream.h"
int N;
const int M=5;
struct cinfo
{
int cnum;
int atime;
};
struct stack
{
cinfo cstac
www.eeworm.com/read/277192/10655209
makefile
# Copyright (c) 1994, 1995, 1996
# The Regents of the University of California. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are
www.eeworm.com/read/422200/10656655
cpp 11-5.cpp
#include
#include
const MAX =200;
class queue
{
protected:
int qdata[MAX];
int tail,head;
public:
queue(void)
{
tail=head=0;
}
void pushta
www.eeworm.com/read/422200/10656883
cpp 12-7.cpp
#include
#include
#include
template
class queue
{
private:
Type size;
Type start;
Type end;
Type *data;
public:
queue();
queu
www.eeworm.com/read/421904/10681576
change_log
Kernel_AODV Change Log
Changes for:
V 2.2.2
=====================
- Corrected LINK_LIMIT #ifdefs (Fix from Peter Barron)
- aodv_neigh.c
- hello.c
- module.c
- Add Packet Queuing back in
www.eeworm.com/read/158942/10710378
pas listform.pas
unit ListForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Contnrs;
type
TForm1 = class(TForm)
ButtonAdd: TButton;
Bu
www.eeworm.com/read/349984/10778912
c qus.c
/*************************************************************************/
/* */
/* Copyright (c) 1993-1996 Accelerated