代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/131166/14157602

cpp queue.cpp

// Queue.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "iostream.h" #include "queue.h" #include "assert.h" template Queue::Queu
www.eeworm.com/read/130455/14193111

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/130455/14193247

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
www.eeworm.com/read/232480/14194786

h queue.h

/***************************************************************************** Copyright
www.eeworm.com/read/232480/14194791

cpp queue.cpp

/***************************************************************************** Copyright
www.eeworm.com/read/130423/14194857

vhd queue.vhd

library ieee; use ieee.std_logic_1164.all; entity queue is generic (departure_rate : time := 5 ns); port (is_empty : out std_logic; consume : in std_logic; arri
www.eeworm.com/read/130264/14199793

c queue.c

/* * Boa, an http server * Copyright (C) 1995 Paul Phillips * Some changes Copyright (C) 1997 Jon Nelson * * This program is free software; you can redistribu
www.eeworm.com/read/130006/14212139

h queue.h

#ifndef QUEUE_H_H #define QUEUE_H_H typedef int QElemType; typedef struct QNode { QElemType data; struct QNode *next; }QNode; typedef struct Queue { QNode *front,*rear; }Queue; vo
www.eeworm.com/read/130006/14212150

cpp queue.cpp

#include"Queue.h" #include void InitQueue(Queue &Q) { Q.front=Q.rear=new QNode; Q.front->next=0; } void EnQueue(Queue &Q,QElemType e) { QNode *p=new QNode; p->next=0;
www.eeworm.com/read/231595/14226780

h queue.h

/****************************************Copyright (c)************************************************** ** 广州周立功单片机发展有限公司 ** 研 究