代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/465686/7051856
h queue.h
/*****************************************************************************
Copyright (c) 2001 - 2008, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and
www.eeworm.com/read/465686/7051862
cpp queue.cpp
/*****************************************************************************
Copyright (c) 2001 - 2008, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and
www.eeworm.com/read/464584/7065807
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/464584/7065811
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/197608/7069735
h queue.h
/*
* File: queue.h
* -------------
* This file provides an interface to a simple queue
* abstraction.
*/
#ifndef _queue_h
#define _queue_h
#include "genlib.h"
/*
* Type: queueADT
* ---------
www.eeworm.com/read/197608/7069739
c queue.c
/*
* File: queue.c
* -------------
* This file implements the queue.h abstraction using an array.
*/
#include
#include "genlib.h"
#include "queue.h"
/*
* Constants:
* ----------
*
www.eeworm.com/read/140893/7117113
java queue.java
//: c11:Queue.java
// Making a queue from a LinkedList.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel
www.eeworm.com/read/104147/7141384
java queue.java
import java.util.*;
public class Queue {
private LinkedList list = new LinkedList();
public void put(Object v) {
list.addFirst(v);
}
public Object get() {
return list.rem
www.eeworm.com/read/463883/7174401
h queue.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you lic
www.eeworm.com/read/463883/7174404
cpp queue.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you lic