代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/432517/8597921
h queue.h
/*
* Copyright (c) 2000-2008
* Author: Weiming Zhou
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without f
www.eeworm.com/read/187687/8608328
png queue.png
www.eeworm.com/read/387809/8652718
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
typedef struct queueType
{
list l;
}*queue;
queue newQueue();
int queueIsEmpty(queue q);
void enQueue(queue q, poly x);
poly deQueue(queue q);
#e
www.eeworm.com/read/387809/8652730
cpp queue.cpp
#include
#include
#include "list.h"
#include "queue.h"
queue newQueue ()
{
queue q =(queue)malloc(sizeof (*q));
q->l = newList ();
return q;
}
int queueIsEmpty
www.eeworm.com/read/387809/8652750
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
typedef struct queueType
{
list l;
}*queue;
queue newQueue();
int queueIsEmpty(queue q);
void enQueue(queue q, poly x);
poly deQueue(queue q);
#e
www.eeworm.com/read/387809/8652759
cpp queue.cpp
#include
#include
#include "list.h"
#include "queue.h"
queue newQueue ()
{
queue q =(queue)malloc(sizeof (*q));
q->l = newList ();
return q;
}
int queueIsEmpty
www.eeworm.com/read/288078/8653147
h queue.h
/*
This file is part of SWAIN (http://sourceforge.net/projects/swain).
Copyright (C) 2006 Daniel Lindstr鰉 and Daniel Nilsson
This program is free software; you can redistribute it and/or
modify
www.eeworm.com/read/288078/8653411
cpp queue.cpp
/*
This file is part of SWAIN (http://sourceforge.net/projects/swain).
Copyright (C) 2006 Daniel Lindstr鰉 and Daniel Nilsson
This program is free software; you can redistribute it and/or
modify
www.eeworm.com/read/387762/8655179
h queue.h
// Abstract queue class
template class Queue {
public:
// Reinitialize the queue. The user is responsible for
// reclaiming the storage used by the stack elements.
virtual voi
www.eeworm.com/read/287946/8658277
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