代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/263372/11365398
ncb queue.ncb
www.eeworm.com/read/263372/11365400
cpp queue.cpp
#include "stdlib.h"
#include
using namespace std;
typedef struct node //定义结点结构
{
char data;
struct node *next;
}node;
class queue
{
private:
node *head;
node
www.eeworm.com/read/263372/11365402
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/263372/11365404
plg queue.plg
Build Log
--------------------Configuration: queue - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~
www.eeworm.com/read/263372/11365405
dsw queue.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "queue"=".\queue.dsp
www.eeworm.com/read/263283/11368544
h queue.h
#pragma once
typedef struct Qdata
{
BYTE *data;
unsigned int size;
}QNode;
class CQueue
{
public:
CQueue(int cnt);
int GetCount();
BOOL Push(QNode *data);
BOOL Pop(QNode *data);
www.eeworm.com/read/263283/11368568
cpp queue.cpp
#include "StdAfx.h"
#include "Queue.h"
CQueue::CQueue(int cnt)
{
if(cnt > 1)
{
m_size = cnt;
m_data = new QNode[m_size];
}
else
{
m_data = NULL;
m_size = 0;
}
buffCoun
www.eeworm.com/read/263039/11378394
h queue.h
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/263039/11378409
cpp queue.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标