代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/320832/13417567

cpp queue.cpp

#include "iostream.h" #include "stdlib.h" typedef int ElemType; typedef struct dulnode { ElemType data; struct dulnode *prior; struct dulnode *next; }DNode; // 双向循环链表的初始化;(只有头结点) DNode *
www.eeworm.com/read/320605/13422037

java queue.java

//: c11:Queue.java // Making a queue from a LinkedList. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. import com.bruceeckel
www.eeworm.com/read/320605/13422398

java queue.java

//: c15:Queue.java // Demonstration of Design by Contract (DBC) combined // with white-box unit testing. // {Depends: junit.jar} // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.Br
www.eeworm.com/read/320159/13432189

h queue.h

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/320159/13432223

h queue.h

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/319871/13441087

m queue.m

function q=queue(v) %@QUEUE\QUEUE queue class constructor function % 调用格式 % q=queue 创建一个"空"队列对象. % q=queue(v) 创建包含变量v的队列对象。 superiorto('double','sparse','struct','cell','char','inline'
www.eeworm.com/read/319472/13451313

h queue.h

/* queue.h -- interface for a queue */ #ifndef _QUEUE_H_ #define _QUEUE_H_ #include /* INSERT ITEM TYPE HERE */ /* FOR EXAMPLE, */ /* use the following for use_q.c */ /* typedef i
www.eeworm.com/read/319472/13451315

c queue.c

/* queue.c -- the Queue type implementation*/ #include #include #include "queue.h" /* local functions */ static void CopyToNode(Item item, Node * pn); static void CopyToIt
www.eeworm.com/read/319335/13453806

m queue.m

function q=queue(v) %@QUEUE\QUEUE queue class constructor function % 调用格式 % q=queue 创建一个"空"队列对象. % q=queue(v) 创建包含变量v的队列对象。 superiorto('double','sparse','struct','cell','char','inline'
www.eeworm.com/read/318418/13479344

opt queue.opt