代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/247320/12666103
cpp queue.cpp
// queue.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#ifndef CRYPTOPP_IMPORTS
#include "queue.h"
#include "filters.h"
NAMESPACE_BEGIN(CryptoPP)
static con
www.eeworm.com/read/146126/12668345
h queue.h
// abstract class queue
// abstract data type specification for queue data structure
// all methods are pure virtual functions
#ifndef queue_
#define queue_
using namespace std;
template
www.eeworm.com/read/247057/12690045
class queue.class
www.eeworm.com/read/247057/12690062
java queue.java
public interface Queue {
public void enqueue (Object element); //入队
public Object dequeue();//出队
}
www.eeworm.com/read/333254/12692844
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/333254/12692857
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/332817/12726280
c queue.c
#include
#include
#define NUM 100
typedef struct queue
{
int q[NUM];
int rear;
www.eeworm.com/read/332817/12726281
exe queue.exe
www.eeworm.com/read/144877/12764900
h queue.h
// Queue.h: interface for the Queue class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_QUEUE_H__74273C4C_55B3_45E9_B577_4AA66CCC45A3__INCLUDED_)
#d