代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/262923/11384221
class queue.class
www.eeworm.com/read/262923/11384228
java queue.java
package ionic.Msmq;
/**
*title: 提供对消息队列进行操作的各种接口
*copy 中智软件
*company ZZsoft
*@version 1.2
*@author ionic,郭帆
*/
public class Queue {
/**
* 消息队列
www.eeworm.com/read/408453/11387835
h queue.h
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/408453/11387842
cpp queue.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/407557/11415964
java queue.java
package sample;
public class Queue {
protected Object[] data;
protected int writeIndex;
protected int readIndex;
protected int count;
public Queue(int size) {
data = new Obj
www.eeworm.com/read/407518/11417909
c queue.c
#include
#include
#define FALSE 0
#define NULL 0
struct listst {
int dataitem;
struct listst * next;
} ;
typedef struct listst listelement;
void Menu (int *choice
www.eeworm.com/read/407513/11417982
h queue.h
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/*
* Copyright (c) 1996-1997 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and u
www.eeworm.com/read/406664/11437781
cpp queue.cpp
template
Queue::~Queue()
{
while ( ! is_empty() )
remove();
}
template
void Queue::add( const Type &val )
{
// allocate
www.eeworm.com/read/406664/11437784
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/406559/11439790