代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/211352/15182599
class queue.class
www.eeworm.com/read/211352/15182604
java queue.java
package circularQueue;
public interface Queue
{
public void insert(Object obj);
public boolean isEmpty();
public boolean isFull();
public Object remove();
public Object getRear();
pub
www.eeworm.com/read/210981/15189140
h queue.h
/*
请修改这些队列函数,以适应循环链表
可考虑删去 front 或 rear
除此之外,还可以考虑函数的返回值是否恰当
*/
typedef struct Node *PNode;
struct Node // 结点结构
{
DataType info;
PNode link;
};
struct LinkQueue
www.eeworm.com/read/210880/15190287
h queue.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Queue.h
// This file holds the two queue implementations.
www.eeworm.com/read/210875/15190580
h queue.h
//队列的类型定义
#ifndef _MY_QUEUE_H_
#define _MY_QUEUE_H_
#define MAXQSIZE 100 //最大队列长度
struct SqQueue
{
BiTNode* base[MAXQSIZE]; // 动态分配存储空间
int front; // 头指针,若队列不空,指向队列头
www.eeworm.com/read/210671/15193968
h queue.h
// Fig. 15.12: queue.h
// Queue class template definition
// Derived from class List
#ifndef QUEUE_H
#define QUEUE_H
#include "list.h"
template< class QUEUETYPE >
class Queue: private List
www.eeworm.com/read/210671/15193972
h queue.h
// QUEUE.H
// Definition of class Queue
#ifndef QUEUE_H
#define QUEUE_H
#include
#include
#include "queuend.h"
using std::cout;
template
class Queue {
pu
www.eeworm.com/read/209907/15211890
java queue.java
package animation;
import java.awt.*;
import animation.VisualElement;
//import math.Vector;
import java.util.Vector;
/**
This class handles queues on the network. Each queue corrseponds to a
www.eeworm.com/read/209806/15214162
o queue.o
www.eeworm.com/read/209806/15214164
h queue.h
#include
struct Circle
{
int InitX;
int InitY;
int InitR;
};
class HQueue{ //define classes of Cycle Queue
public:
HQueue(int = 4);
~HQueue(