代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/424004/10508714
cpp ex7_11.cpp
//【例7.11】链队类模板。
#include
#include
using namespace std;
templateclass Queue;
templateclass Node{
T info;
Node *link; //在类模板Node中使用指向Node的指针可以不加
www.eeworm.com/read/424004/10508926
cpp ex7_10.cpp
//【例7.10】顺序存储方式的循环队列类模板。
#include
#include
using namespace std;
templateclass Queue{
int rear,front; //队尾与队头
T *elements; //存放队列元素的容器
int max
www.eeworm.com/read/424004/10509014
cpp ex11_10.cpp
//【例11.10】演示队列的入队和出队。
#include
#include
using namespace std;
int main(){
const int size=10;
int i,ia[10]={0,1,2,3,4,5,6,7,8,9};
queue intque;
for(i=0;i
www.eeworm.com/read/423907/10527094
c linkqueu.c
/* TO PUSH AND POP AN ELEMENT INTO THE QUEUE USING LINK ALLOCATION */
#include
#include
typedef struct link
{
int e;
struct link *next;
}queue;
queue *front,*rear,*te
www.eeworm.com/read/423905/10527182
c cirqueue.c
/* TO PERFORM DIFFERENT OPERATIONS ON CIRCULAR QUEUE */
#include
#include
#include
#define MAX 3
typedef struct
{
int arr[MAX];
int front;
int rear;
}qu
www.eeworm.com/read/278099/10569905
h deque.h
/* +++Date last modified: 05-Jul-1997 */
/*
* File : DEQUE.H
*
* Peter Yard 02 Jan 1993.
*/
#ifndef DEQUEUE__H
#define DEQUEUE__H
#include "sniptype.h" /* For
www.eeworm.com/read/160058/10575575
java bbload.java
/*
* BLoad.java
*
* Created on 2006年4月18日, 下午4:38
*
* To change this template, choose Tools | Options and locate the template under
* the Source Creation and Management node. Right-click the tem
www.eeworm.com/read/278058/10577949
cpp nested.cpp
// nested.cpp -- using a queue that has a nested class
#include
#include
#include "queuetp.h"
int main()
{
using std::string;
using std::cin;
using std::cou
www.eeworm.com/read/422934/10600772
cpp notifier.cpp
/*----------------------------------------------------------------------------*/
/* Copyright (c) FIRST 2008. All Rights Reserved. */
/* Open Source Software - may be modified and shared by
www.eeworm.com/read/159878/10603560
pas listform.pas
unit ListForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Contnrs;
type
TForm1 = class(TForm)
ButtonAdd: TButton;
Bu