代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/152037/12149373

hpp queue.hpp

#ifndef QUEUE_HPP #define QUEUE_HPP // declaration that Queue is a template needed for friend declaration in QueueItem template class Queue; template class QueueItem
www.eeworm.com/read/152037/12149374

cpp queue.cpp

#include "../header/Queue.hpp" template void Queue::destroy() { while (!empty()) pop(); } template void Queue::pop() { // pop is unc
www.eeworm.com/read/340253/12168789

h queue.h

/* $Id: queue.h,v 1.1.1.1 2003/01/16 15:41:11 root Exp $ */ /* from FreeBSD: src/sys/sys/queue.h,v 1.54 2002/08/05 05:18:43 alfred Exp */ /* Copyright (c) 1991, 1993 * The Regents of the University
www.eeworm.com/read/340227/12171586

h queue.h

// Queue.h: interface for the Queue class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_QUEUE_H__E2141A2A_FC86_455E_BE08_8B4F6EEEFB24__INCLUDED_) #d
www.eeworm.com/read/340227/12171757

cpp queue.cpp

// Queue.cpp: implementation of the Queue class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "AviationBS.h" #include #inc
www.eeworm.com/read/253867/12179731

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/253867/12179765

cpp queue.cpp

template Queue::~Queue() { while ( ! is_empty() ) remove(); } template void Queue::add( const Type &val ) { // allocate
www.eeworm.com/read/253821/12184386

c queue.c

#include #define Max 100 void SetNull(front, rear) int *front, *rear; { *front = 0; *rear = 0; } int Empty(front,rear) int *front, *rear; { if(*front == *rear) return(1)
www.eeworm.com/read/151608/12188598

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/339858/12200392

o queue.o