代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/399145/7886276
plg queue.plg
Build Log
--------------------Configuration: Queue - Win32 Debug--------------------
Command Lines
Results
Queue.exe - 0 error(
www.eeworm.com/read/399145/7886281
h queue.h
#define ElemType char
typedef struct queueNode
{
ElemType data;
struct queueNode *next;
}QueueNode;
typedef struct
{
QueueNode *front;
QueueNode *rear;
}*LinkQueue;
#define Apply(
www.eeworm.com/read/399145/7886286
dsw queue.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/399145/7886303
dsp queue.dsp
# Microsoft Developer Studio Project File - Name="Queue" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
www.eeworm.com/read/399145/7886305
opt queue.opt
www.eeworm.com/read/399145/7886309
ncb queue.ncb
www.eeworm.com/read/399145/7886314
cpp queue.cpp
#include
#include
#include
#include "Queue.h"
void QueueInitial(LinkQueue pQ)
{
QueueNode *p;
Apply(p);
if (NULL==p)
{
printf("内存分配失败!");
exit(1);
www.eeworm.com/read/434090/7890401
h queue.h
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/434090/7890435
cpp queue.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/434090/7890531