代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/157403/11710109

c quce.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/346713/11728932

java updatequeue.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v
www.eeworm.com/read/346713/11728934

java priorityqueue.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v
www.eeworm.com/read/259580/11780035

h minpriorityqueue.h

// abstract class min priority queue // all methods are pure virtual functions #ifndef minPriorityQueue_ #define minPriorityQueue_ using namespace std; template class minPriorityQ
www.eeworm.com/read/259580/11780708

h maxpriorityqueue.h

// abstract class max priority queue // all methods are pure virtual functions #ifndef maxPriorityQueue_ #define maxPriorityQueue_ using namespace std; template class maxPriorityQ
www.eeworm.com/read/345577/11808060

c mesg.c

/***** spin: mesg.c *****/ /* Copyright (c) 1989-2003 by Lucent Technologies, Bell Laboratories. */ /* All Rights Reserved. This software is for educational purposes only. */ /* No guarantee wh
www.eeworm.com/read/155961/11836827

cpp spareoil.cpp

// SpareOil.cpp : Defines the entry point for the console application. // written by WUFAN,February 23th--24th,2006 #include "stdafx.h" #include //node是队列的元素结点 struct node{ int cont
www.eeworm.com/read/344164/11904599

c rf_diskthreads.c

/* * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. * * Author: Mark Holland, Rachad Youssef, Daniel Stodolsky * * Permission to use, copy, modify and distribute this soft
www.eeworm.com/read/344156/11906811

c disksim_ioqueue.c

/* * DiskSim Storage Subsystem Simulation Environment (Version 4.0) * Revision Authors: John Bucy, Greg Ganger * Contributors: John Griffin, Jiri Schindler, Steve Schlosser * * Copyright (c) of C
www.eeworm.com/read/344139/11907695

txt 消息队列.txt

消息队列 消息队列(也叫做报文队列)能够克服早期unix通信机制的一些缺点。作为早期unix通信机制之一的信号能够传送的信息量有限,后来虽然POSIX 1003.1b在信号的实时性方面作了拓广,使得信号在传递信息量方面有了相当程度的改进,但是信号这种通信方式更像"即时"的通信方式,它要求接受信号的进程在某个时间范围内对信号做出反应,因此该信号最多在接受信号进程的生命周期内才有意义,信号所传递的信 ...