代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/225544/14535831
cpp queue.cpp
/******************************************************************************
Module: Queue.cpp
Notices: Copyright (c) 2000 Jeffrey Richter
******************************************************
www.eeworm.com/read/224980/14558067
h queue.h
#define QUEUE_NAME_LEN 32
typedef struct {
char * start;
int head;
int tail;
int size;
int nobj;
www.eeworm.com/read/224980/14558085
cpp queue.cpp
#include
#include
#include "queue.h"
queue * MakeQueue( int qsize, int objsize )
{
queue * qp;
if( !( qp = ( queue *
www.eeworm.com/read/124570/14559722
java queue.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/124158/14592924
h queue.h
/****************************************************************************
** COPYRIGHT (C) 1994-1997 INTEL CORPORATION **
** DEVELOPED FOR MICROSOFT BY INTEL CORP.,
www.eeworm.com/read/123878/14607676
cpp queue.cpp
//使用前应定义QElemType
#include
#include "preDefine.h"
#define MAXQSIZE 100
typedef struct SqQueue
{ QElemType *base;
int front;
int rear;
}SqQueue;
Status InitQueue(Sq
www.eeworm.com/read/123877/14607691
cpp queue.cpp
//使用前应定义QElemType
#include
#include "preDefine.h"
#define MAXQSIZE 100
typedef struct SqQueue
{ QElemType *base;
int front;
int rear;
}SqQueue;
Status InitQueue(Sq
www.eeworm.com/read/123876/14607697
cpp queue.cpp
//使用前应定义QElemType
#include
#include "preDefine.h"
#define MAXQSIZE 100
typedef struct SqQueue
{ QElemType *base;
int front;
int rear;
}SqQueue;
Status InitQueue(Sq
www.eeworm.com/read/123874/14607759
cpp queue.cpp
//使用前应定义QElemType
#include
#include "preDefine.h"
#define MAXQSIZE 100
typedef struct SqQueue
{ QElemType *base;
int front;
int rear;
}SqQueue;
Status InitQueue(Sq
www.eeworm.com/read/123474/14629361
h queue.h
//queue.h
#ifndef QUEUE_CLASS
#define QUEUE_CLASS
#include
#include
using namespace std;
#include "link.h"
template
class Queue
{
private:
// 用