代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/462797/7196203

makefile

COMPONENT=TempMon SENSORBOARD=basicsb PFLAGS= -I. -I./Queue -DLEACH -DSIM=20 include ../../../apps/Makerules
www.eeworm.com/read/462231/7206015

makefile

# 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
www.eeworm.com/read/461011/7235845

tcl ns-rsvp.tcl

# # Copyright (c) 1998 The University of Bonn # All rights reserved. # # Permission to use and copy this software in source and binary forms # is hereby granted, provided that the above copyright not
www.eeworm.com/read/460348/7252985

c sort_radix.c

/* 基数排序的算法源程序*/ #include #define D 3 /* D为排序码的最大位数 */ #define R 10 /* R为基数 */ typedef int KeyType; typedef int DataType; struct Node
www.eeworm.com/read/459616/7270625

h lqueue.h

// header file lqueue.h // linked queue #ifndef LinkedQueue_ #define LinkedQueue_ #include "node.h" #include "xcept.h" template class LinkedQueue { // FIFO objects public: LinkedQu
www.eeworm.com/read/459616/7270633

cpp lqueue.cpp

// test linked queue class #include #include "lqueue.h" void main(void) { LinkedQueue Q; int x; try {Q.Add(1).Add(2).Add(3).Add(4); cout
www.eeworm.com/read/458941/7285263

java simpleobjectfifo.java

public class SimpleObjectFIFO extends Object { private Object[] queue; private int capacity; private int size; private int head; private int tail; public SimpleObjectFIFO(int cap) { c
www.eeworm.com/read/458528/7294987

txt number4.txt

#include #include #include typedef struct//定义一个队 { char data[50]; int front; int rear; }queue; typedef struct { char data[50]; int top; }stack; //初始化栈 void
www.eeworm.com/read/458099/7313157

h struct.h

#ifndef structh #define structh typedef struct { const unsigned int *add; unsigned char data; }PORT; typedef struct { unsigned char index; unsigned char PortData; }BUTTONPORT; struct
www.eeworm.com/read/458099/7313174

h function.h

#ifndef functionh #define functionh #include "macro.h" #include "struct.h" void RealTimeFoun(int mode); void PortDataOut(void); void ClearPort(int mode=0); void QueuePush(QUEUE **PointHead,QUEU