代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/404433/11485413
txt readme.txt
========================================================================
CONSOLE APPLICATION : Test_Queue
========================================================================
AppWiza
www.eeworm.com/read/404150/11491174
cpp 机场.cpp
#include
#include
#include
#include
#include
using namespace std;
class plane{//plane类的定义
public:
int id;
int tm;
};
template
www.eeworm.com/read/403011/11524474
cpp nested.cpp
// nested.cpp -- using a queue that has a nested class
#include
#include
#include "queuetp.h"
int main()
{
using std::string;
using std::cin;
using std::cou
www.eeworm.com/read/403009/11524779
cpp nested.cpp
// nested.cpp -- using a queue that has a nested class
#include
#include
#include "queuetp.h"
int main()
{
using std::string;
using std::cin;
using std::cou
www.eeworm.com/read/347982/11620295
c 30.c
#include "stdio.h"
#define STACKSIZE 2
struct Car
{
char Label;
float InTime;
};
struct StackCar
{
struct Car *Top;
struct Car *BottomStack;
int Size;
};
int StackInitial(str
www.eeworm.com/read/158343/11624351
pm event.pm
package Net::OICQ::Event;
# $Id: Event.pm,v 1.6 2003/10/17 20:01:52 tans Exp $
# Copyright (c) 2003 Shufeng Tan. All rights reserved.
#
# This package is free software and is provided "as is" with
www.eeworm.com/read/347848/11632676
java queuedemo.java
public class QueueDemo
{
public static void main(String[] args)
{
Queue q = new Queue( );
q.addToBack("Tom");
q.addToBack("Dick");
q.addToBack("Harri
www.eeworm.com/read/347650/11650163
c cancelsafe.c
/*++
Copyright (c) 1999 - 2002 Microsoft Corporation
Module Name:
cancelSafe.c
Abstract:
This is the main module of the cancelSafe miniFilter driver.
Environment:
Ker
www.eeworm.com/read/157453/11704406
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/157453/11704426
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