代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/354597/10343620
mak dirs.mak
#
# Makefile for DIRS.EXE
#
# Compiler : Microsoft C 6.0
# Created : 19.8.1992
# Copyright (c) : Martti Ylikoski, 1992
#
# Notes: The llibcep.lib is the default library in my
www.eeworm.com/read/354492/10349337
cpp main7.cpp
// Section 16.7
// $ CC main7.cpp
/*
< 0 3 6 9 >
< 2 4 6 8 10 >
*/
#include "Queue.h"
#include "Queue.cpp"
using std::cout;
#include
using std::vector;
int main()
{
www.eeworm.com/read/161929/10356637
cpp tree.cpp
//定义类中的成员函数,文件名为tree.cpp
#include
#include
#include"tree.h"
using namespace std;
/*
*前置条件:树不存在
*输 入:无
*功 能:构造一棵树
*输 出:无
*后置条件:产生一棵树
*/
template
www.eeworm.com/read/161837/10366580
cpp tree.cpp
//定义类中的成员函数,文件名为tree.cpp
#include
#include
#include"tree.h"
using namespace std;
/*
*前置条件:树不存在
*输 入:无
*功 能:构造一棵树
*输 出:无
*后置条件:产生一棵树
*/
template
www.eeworm.com/read/279974/10371988
h cs8950hw.h
/************************************************************************
* BEGIN_MANUAL_ENTRY
* Filename: cs8950hw.h
*
* Modification History:
*
* 5/30/2000 Melody Lee
* Crea
www.eeworm.com/read/161587/10394993
h lqueue.h
// header file lqueue.h
// linked queue
#ifndef LinkedQueue_
#define LinkedQueue_
#include "node.h"
#include "xcept.h"
template
class LinkedQueue {
// FIFO objects
public:
www.eeworm.com/read/161587/10395022
cpp lqueue.cpp
// test linked queue class
#include
#include "lqueue.h"
void main(void)
{
LinkedQueue Q;
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout
www.eeworm.com/read/279473/10434939
cpp 队列.cpp
#include
class listnode
{
public:
int data;
listnode *next;
listnode(const int &itemval,listnode *ptr=NULL)
{
data=itemval;
next=ptr;
}
};
class queue//带表头
{
publ
www.eeworm.com/read/424355/10458547
ned fifonet.ned
//
// This file is part of an OMNeT++/OMNEST simulation example.
//
// Copyright (C) 1992-2005 Andras Varga
//
// This file is distributed WITHOUT ANY WARRANTY. See the file
// `license' for det