代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/351896/10599026
h queue.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/351896/10599204
h queue.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/159827/10611839
obj queue.obj
www.eeworm.com/read/159827/10611840
cpp queue.cpp
//THE PROGRAM IS TO TEST THE CLASS "QUEUE"
//FILE QUEUE.CPP
#include "QUEUE.h"
class QUEUE : LIST
{
public:
QUEUE():LIST(){}
void PUT(int NUM)
{
LIST::BACKWARD_ADD(NUM);
www.eeworm.com/read/159827/10611841
exe queue.exe
www.eeworm.com/read/159827/10611842
h queue.h
//THE FILE INCLUDES THE CLASS "NODE" "LIST"
//FILE QUEUE.H
#include
#include
#include
class NODE
{
friend class LIST;
private:
NODE *NEXT;
www.eeworm.com/read/159827/10611843
dsk queue.dsk
www.eeworm.com/read/159827/10611844
prj queue.prj
www.eeworm.com/read/422757/10612244
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
// The queue is implemente
www.eeworm.com/read/422757/10612507
cpp queue.cpp
// queue.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "queue.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
// this class for use by ByteQueue only
cl