代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/157150/11737685
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/157007/11744970
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
#include
using std::cerr;
using std::ostream;
#include
using std::exit;
// declaration of QueueItem
template class QueueIte
www.eeworm.com/read/157007/11744987
cpp queue.cpp
template
Queue::~Queue()
{
while ( ! is_empty() )
remove();
}
template
void Queue::add( const Type &val )
{
// allocate
www.eeworm.com/read/260071/11749238
h queue.h
// Queue.h: interface for the Queue class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_QUEUE_H__94B5BA23_4E0A_43CA_8E32_4DAF3D6FF4FA__INCLUDED_)
#d
www.eeworm.com/read/260071/11749259
cpp queue.cpp
// Queue.cpp: implementation of the Queue class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Queue.h"
/////////////////////////////
www.eeworm.com/read/346101/11769031
o queue.o
www.eeworm.com/read/346101/11769043
c queue.c
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Work
www.eeworm.com/read/346101/11769082
h queue.h
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Work
www.eeworm.com/read/259580/11779986
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