代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/231595/14226785
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/129636/14235057
m queue.m
function q=queue(v)
%@QUEUE\QUEUE queue class constructor function
% 调用格式
% q=queue 创建一个"空"队列对象.
% q=queue(v) 创建包含变量v的队列对象。
superiorto('double','sparse','struct','cell','char','inline'
www.eeworm.com/read/231175/14249736
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
// The queue is implemente
www.eeworm.com/read/231175/14249805
cpp queue.cpp
// queue.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "queue.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
// this class for use by ByteQueue only
cl
www.eeworm.com/read/129187/14259043
class queue.class
www.eeworm.com/read/129131/14263535
java queue.java
public class Queue {
private java.util.LinkedList list = new java.util.LinkedList();
public Queue() {
}
public void clear() {
list.clear();
}
public boolean isEmpty() {
www.eeworm.com/read/129125/14264160
class queue.class
www.eeworm.com/read/129125/14264173
java queue.java
public class Queue
{
private List customers = new List();
private synchronized Object performAction(String cmd, Object obj)
{
if (cmd.equals("insert"))
{
if (!customers.
www.eeworm.com/read/129125/14264354