代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/174006/9612387
txt 4.2.txt
Listing 4.2 Using Enqueue and Dequeue Instead of Push and Pop
static void TestQueue( string[] names )
{
Queue nameQueue = new Queue();
foreach( string name in names )
{
nameQueue.Enqueue( name )
www.eeworm.com/read/370144/9615482
dpr p192.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
www.eeworm.com/read/370144/9615718
dpr p226.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
www.eeworm.com/read/370140/9615766
dpr maxflow_preflowpush.dpr
Const
MaxN = 5000 ;
MaxM = 50000 ;
MaxNodeNum = MaxN + MaxM + 2 ;
MaxEdgeNum = (MaxN + 3 * MaxM) * 2 ;
Infinity = 10000000 ;
Type
EdgeType = record
Start,Target:Longint;
Capa,Flow:L
www.eeworm.com/read/370119/9617095
cpp eventqueue.cpp
#include "EventQueue.h"
_LIT(KGLobalName, "HAnimGlobe");
CEventQueue* CEventQueue::NewL(MEventQueue& aNotify)
{
CEventQueue* queue = new ( ELeave ) CEventQueue(aNotify);
CleanupStack::Pu
www.eeworm.com/read/370119/9617130
cpp eventqueue.cpp
#include "EventQueue.h"
_LIT(KGLobalName, "HAnimGlobe");
CEventQueue* CEventQueue::NewL(MEventQueue& aNotify)
{
CEventQueue* queue = new ( ELeave ) CEventQueue(aNotify);
CleanupStack::Pu
www.eeworm.com/read/173437/9658097
change_log
Kernel_AODV Change Log
Changes for:
V 2.2.2
=====================
- Corrected LINK_LIMIT #ifdefs (Fix from Peter Barron)
- aodv_neigh.c
- hello.c
- module.c
- Add Packet Queuing back in
www.eeworm.com/read/173433/9658357
tcl ns-default.tcl
# -*- Mode:tcl; tcl-indent-level:8; tab-width:8; indent-tabs-mode:t -*-
#
# Time-stamp:
#
# Copyright (c) 1996-1997 Regents of the University of California.
# All rights r
www.eeworm.com/read/173433/9658358
in makefile.in
# Copyright (c) 1994, 1995, 1996
# The Regents of the University of California. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are per
www.eeworm.com/read/173217/9666676
cpp 510.cpp
/*
510.cpp
Written By S.Y.Feng
demo Queue constructor and destructor
*/
#include
class Queue
{
int anQueue[100];
int sLoc,rLoc;
public:
Queue(void);
~