代码搜索:queue

找到约 10,000 项符合「queue」的源代码

代码结果 10,000
www.eeworm.com/read/487368/6510776

c queue.c

#include #define Max 100 void SetNull(front, rear) int *front, *rear; { *front = 0; *rear = 0; } int Empty(front,rear) int *front, *rear; { if(*front == *rear) return(1)
www.eeworm.com/read/487037/6522772

cc queue.cc

#include using namespace std; typedef int T; class List{ struct Node{ T data; Node* next; Node(const T& d):data(d),next(NULL){++cnt;} ~Node(){--cnt;} static int cnt;
www.eeworm.com/read/487089/6523429

o queue.o

www.eeworm.com/read/487089/6523434

c queue.c

/****************************************************************************** Copyright (c) 2006 by RockOS. All rights reserved. This software is supported by the Rock Software Work
www.eeworm.com/read/487089/6523447

h queue.h

/****************************************************************************** Copyright (c) 2006 by RockOS. All rights reserved. This software is supported by the Rock Software Work
www.eeworm.com/read/486736/6525958

h queue.h

// specification file for an unlimited queue for storing bytes #ifndef CRYPTOPP_QUEUE_H #define CRYPTOPP_QUEUE_H #include "simple.h" //#include NAMESPACE_BEGIN(CryptoPP) /**
www.eeworm.com/read/486736/6526040

obj queue.obj

www.eeworm.com/read/486736/6526131

cpp queue.cpp

// queue.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "queue.h" #include "filters.h" NAMESPACE_BEGIN(CryptoPP) // this class for use by ByteQueue only
www.eeworm.com/read/486816/6530397

obj queue.obj

www.eeworm.com/read/486816/6530399

cpp queue.cpp

#include "Operater Declare.h" Status InitQueue(LinkQueue &Q) { Q.front=Q.rear=(QueuePtr)malloc(sizeof(QNode)); if(!Q.front) { exit(OVERFLOW); } Q.front->next=NULL; return OK;