代码搜索:queue

找到约 10,000 项符合「queue」的源代码

代码结果 10,000
www.eeworm.com/read/179954/9329351

hpp queue.hpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/178968/9380279

h queue.h

const int MaxQSize=30; class Queue //利用环形线性存储 { private: int queue[MaxQSize]; //存放队列元素的数组 int front; //队首数组元素位置的下标 int
www.eeworm.com/read/178968/9380292

cpp queue.cpp

#include"iostream" #include"stdlib.h" #include"Queue.h" using namespace std; Queue::Queue():front(0),rear(0),count(0){} /*Queue::~Queue() { cout
www.eeworm.com/read/178882/9382873

class queue.class

www.eeworm.com/read/178882/9382877

java queue.java

/* Name: Queue.java * Author: Liu Lizhe * Date Created: November 13,2004 * Description: Queue implementation in Java */ package com.LiuLizhe.util; public class Queue extends java.util.Ve
www.eeworm.com/read/178391/9400775

class queue.class

www.eeworm.com/read/178391/9400803

java queue.java

package foundations; public interface Queue extends Container { public void add (Object obj); public void remove(); public Object front(); }
www.eeworm.com/read/374502/9401811

h queue.h

/* * queue.h - header file for queue.c * * Copyright 1993 Jeremy Nelson * See the coypright file for more information */ #ifndef __queue_h__ #define __queue_h__ BUILT_IN_COMMAND(queuecmd); #e
www.eeworm.com/read/374502/9401987

c queue.c

/* $EPIC: queue.c,v 1.10 2003/07/09 21:10:25 jnelson Exp $ */ /* * queue.c - The queue command * * Queues allow for future batch processing * * Syntax: /QUEUE -SHOW * Syntax: /QUEUE -DO -L
www.eeworm.com/read/177731/9436665

cpp queue.cpp

// Queue.cpp : implementation file // #include "stdafx.h" #include "Server.h" #include "Queue.h" #include"ServerDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THI