代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/253260/12235299
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/253260/12235311
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/151063/12237343
h queue.h
/*****************************************************************************
*** Author: Hussein F. Salama ***
*** Date: Septembe
www.eeworm.com/read/151063/12237370
c queue.c
/*****************************************************************************
*** Author: Hussein F. Salama ***
*** Date: Septembe
www.eeworm.com/read/150914/12245653
java queue.java
//: c11:Queue.java
// Making a queue from a LinkedList.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel
www.eeworm.com/read/150914/12246371
java queue.java
//: c15:Queue.java
// Demonstration of Design by Contract (DBC) combined
// with white-box unit testing.
// {Depends: junit.jar}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.Br
www.eeworm.com/read/339239/12247890
m queue.m
function q=queue(v)
%@QUEUE\QUEUE queue class constructor function
% 调用格式
% q=queue 创建一个"空"队列对象.
% q=queue(v) 创建包含变量v的队列对象。
superiorto('double','sparse','struct','cell','char','inline'
www.eeworm.com/read/150781/12261379
png queue.png
www.eeworm.com/read/150781/12261464