代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/372507/9507104
cpp queue.cpp
// test formula based queue class
#include
#include "queue.h"
void main(void)
{
Queue Q(3);
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout
www.eeworm.com/read/175643/9538322
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
// The queue is implemente
www.eeworm.com/read/175643/9538432
cpp queue.cpp
// queue.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "queue.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
// this class for use by ByteQueue only
cl
www.eeworm.com/read/175545/9541613
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/175545/9541616
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/175506/9543339
class queue.class
www.eeworm.com/read/175506/9543371
java queue.java
/**
* Title:
*
* Description:
*
* Copyright: Copyright (c) 2006
*
* Company:
*
* @author not attributable
* @version 1.0
*/
public class Queue {
www.eeworm.com/read/175135/9558382
h queue.h
// queue.h -- interface for a queue
#ifndef QUEUE_H_
#define QUEUE_H_
// This queue will contain Customer items
class Customer
{
private:
long arrive; // arrival time for customer
www.eeworm.com/read/175135/9558391
cpp queue.cpp
// queue.cpp -- Queue and Customer methods
#include "queue.h"
#include // (or stdlib.h) for rand()
// Queue methods
Queue::Queue(int qs) : qsize(qs)
{
front = rear = NULL
www.eeworm.com/read/371177/9563112
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
// The queue is implemente