代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/256327/12009620
cpp queue.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/256327/12009650
obj queue.obj
www.eeworm.com/read/342613/12009839
h queue.h
/****************************************Copyright (c)**************************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
www.eeworm.com/read/342613/12009840
c queue.c
/****************************************Copyright (c)**************************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
www.eeworm.com/read/256222/12012537
h queue.h
/* queue.h
** Copyright 2000 Daniel Robbins, Gentoo Technologies, Inc.
** Author: Daniel Robbins
** Date: 16 Jun 2000
*/
typedef struct node {
struct node *next;
} node;
typedef struct queue {
n
www.eeworm.com/read/256222/12012539
c queue.c
/* queue.c
** Copyright 2000 Daniel Robbins, Gentoo Technologies, Inc.
** Author: Daniel Robbins
** Date: 16 Jun 2000
**
** This set of queue functions was originally thread-aware. I
** redesigned th
www.eeworm.com/read/256129/12023848
obj queue.obj
www.eeworm.com/read/256129/12023852
cpp queue.cpp
//THE PROGRAM IS TO TEST THE CLASS "QUEUE"
//FILE QUEUE.CPP
#include "QUEUE.h"
class QUEUE : LIST
{
public:
QUEUE():LIST(){}
void PUT(int NUM)
{
LIST::BACKWARD_ADD(NUM);
www.eeworm.com/read/256129/12023854
exe queue.exe
www.eeworm.com/read/256129/12023859
h queue.h
//THE FILE INCLUDES THE CLASS "NODE" "LIST"
//FILE QUEUE.H
#include
#include
#include
class NODE
{
friend class LIST;
private:
NODE *NEXT;