代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/402772/11527832
h queue.h
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/402772/11527839
cpp queue.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/402271/11539943
hpp queue.hpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/400552/11574525
c queue.c
#include
#define Max 100
void SetNull(front, rear)
int *front, *rear;
{
*front = 0;
*rear = 0;
}
int Empty(front,rear)
int *front, *rear;
{
if(*front == *rear)
return(1)
www.eeworm.com/read/262491/11587345
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
#include
typedef struct one_block
{
void * buf;
int len; //data length
} one_block;
typedef struct queue
{
struct one_
www.eeworm.com/read/262491/11587348
c queue.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/158649/11595360
java queue.java
//: c09:Queue.java
// Making a queue from a LinkedList.
import com.bruceeckel.simpletest.*;
import java.util.*;
public class Queue {
private LinkedList list = new LinkedList();
public void
www.eeworm.com/read/158370/11622860
h queue.h
// queue.h Definition of a Queue class
#include "Qnode.h"
class Queue
{ public: Queue (); // constructor
~Queue (); // destructor
Queue (const Queue& q); // deep copy constructor