代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/284864/8886723
h queue.h
/*
模 块: 队列模块.
功 能: 用于以队列方式存储字符.
程序员: 雷中南.
版 本: v1.0
时 间: 1999-05-05
*/
#ifndef _QUEUE
#define _QUEUE
#include "def.h"
class Queue
{
public:
//构造函数.
Queue();
//析构函数.
~
www.eeworm.com/read/284864/8886826
obj queue.obj
www.eeworm.com/read/384141/8894122
opt queue.opt
www.eeworm.com/read/384141/8894126
h queue.h
#include"iostream.h"
#include "malloc.h"
#include "stdlib.h"
#include "stdio.h"
#include
#include // exit()
#include // eof()
typedef int Status ;
#define OK 1;
#d
www.eeworm.com/read/384141/8894129
ncb queue.ncb
www.eeworm.com/read/384141/8894131
cpp queue.cpp
typedef int QElemType;
#include "queue.h"
Status InitQueue(LinkQueue &Q)
{//初始化队列;
Q.front = Q.rear =(QueuePtr) malloc(sizeof(QNode));
if(!Q.front) exit(-1);
Q.front->next=NULL;
return OK;
www.eeworm.com/read/384141/8894134
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/384141/8894137
plg queue.plg
Build Log
--------------------Configuration: queue - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~
www.eeworm.com/read/384141/8894141
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/284563/8916895
c queue.c
/*
* Copyright (c) 2000-2008
* Author: Weiming Zhou
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without f