代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/232343/14196946
s avrx_canceltimermessage.s
#include "avrx.inc"
/*
Copyright 1999-2001, Larry Barello
larry@barello.net
*/
;
; AvrX Time Queue Manager
;
_MODULE(avrx_canceltimermessage)
_EXT
www.eeworm.com/read/231535/14228015
h seqcqueue.h
/*文件SeqCQueue.h*/
typedef struct
{
DataType queue[MaxQueueSize];
int rear; /*队尾指针*/
int front; /*队头指针*/
} SeqCQueue;
void QueueInitiate(SeqCQueue *Q) /*初始化顺序循环队列Q*/
{
Q->rear = 0;
www.eeworm.com/read/129636/14234922
m comein.m
function q=comein(p,varargin)
% @QUEUE\COMEIN a variable comes to the end of a queue.
% 调用格式
% comein(p,a,b,...) 使输入宗量a,b等排在p之后形成新队列,
% 其名沿用p位置上的输入队列名.
% q=comein(p,a,b,...) 使输入宗量a,
www.eeworm.com/read/129636/14235146
m stack.m
function ST=stack(v)
% 调用格式
% ST=stack 创建一个"空"堆栈对象.
% ST=stack(v) 创建包含变量v的堆栈对象。
if nargin>1;error('Too many arguments.');end;
if nargin==0 % 没有输入宗量情况
Q=queue;
s.value=[];
www.eeworm.com/read/231142/14253323
c quc.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/231142/14253586
c qus.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/129125/14264163
java bank.java
import java.awt.*;
import java.awt.event.*;
public class Bank
extends Business
implements Runnable
{
private Queue queue = null;
public Bank()
{
super("银行");
queu
www.eeworm.com/read/129125/14264491
java calculator.java
public class Calculator
{
private static Queue tokens = null;
protected static double evaluatePostfix(Queue postfix) throws
TokenException
{
Stack numbers = new Stack()
www.eeworm.com/read/230924/14269139
java eventqueue.java
/*
* project: RebecaSim
* package: sim
* file: EventQueue.java
*
* version: 0.1
* date: 03.05.2005
*
* This software is part of the diploma thesis "Ein adaptives Brokernetz
* für Pub
www.eeworm.com/read/230855/14271675
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()
{