代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/349935/10780672
h lqueue.h
// header file lqueue.h
// linked queue
#ifndef LinkedQueue_
#define LinkedQueue_
#include "stdafx.h"
#include "node.h"
#include
template
class LinkedQueue {
// FIF
www.eeworm.com/read/275831/10793914
rb 17 - a remote-controlled jukebox.rb
#!/usr/bin/ruby
# rinda_server.rb
require 'rinda/ring' # for RingServer
require 'rinda/tuplespace' # for TupleSpace
DRb.start_service
# Create a TupleSpace to hold named services, and start
www.eeworm.com/read/275376/10821568
h 9_10.h
///9_10.h
#ifndef QUEUE_CLASS
#define QUEUE_CLASS
#include
#include
using namespace std;
const int MaxQSize = 50; //队列元素最大个数
//类的声明
template
class Queue
{
www.eeworm.com/read/275367/10822330
cpp test1.cpp
// test1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "test1.h"
#include "..\cqueue.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
st
www.eeworm.com/read/349469/10826373
java blockingqueuetest.java
import java.io.*;
import java.util.*;
import java.util.concurrent.*;
public class BlockingQueueTest
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
S
www.eeworm.com/read/419693/10844889
h arrayqueue.h
// circular array implementation of a queue
// derives from the ADT queue
#ifndef arrayQueue_
#define arrayQueue_
#include "queue.h"
#include "myExceptions.h"
#include
using nam
www.eeworm.com/read/419625/10853169
txt pic16c65.txt
;
; Brad and Lawrence's PIC Alice II interface chip. The PIC
; is responsible for keyboard, serial, and clock interfaces.
;
; An internal queue keeps command-data sequences for the CPU.
; The co
www.eeworm.com/read/274718/10856695
cpp 10_14.cpp
#include
#include
using namespace std;
int main()
{ queue< double > q; //创建空的队列容器
q.push( 3.2 ); q.push( 9.8 ); q.push( 5.4 ); //向空的队列容器添加元素
cout
www.eeworm.com/read/419512/10863741
java new.java
package myutils;
import java.util.*;
public class New {
public static Map map(){
return new HashMap();
}
public static List list(){
return new ArrayList();
www.eeworm.com/read/348596/10882564
txt 1708.txt
#include"iostream.h"
#include"memory.h"
int set[100][100];
int map[100][10000][2];
int path[100];
int n,l,k,q;
int cir[100];
void init()
{int i,m,a,b;
memset(path,0,100*sizeof(int));
mem