代码搜索:OPERATION
找到约 10,000 项符合「OPERATION」的源代码
代码结果 10,000
www.eeworm.com/read/245818/12779304
h list.h
/* list.h -- header file for a simple list type */
#ifndef LIST_H_
#define LIST_H_
#include /* C99 feature */
/* program-specific declarations */
#define TSIZE 45
www.eeworm.com/read/245818/12779311
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/245818/12779329
h tree.h
/* tree.h -- binary search tree */
/* no duplicate items are allowed in this tree */
#ifndef _TREE_H_
#define _TREE_H_
#include
/* redefine Item a
www.eeworm.com/read/332098/12780056
h ipp.h
#ifndef _IPP_H
#define _IPP_H
/*
* Defines parts of the IPP protocol between the scheduler
* and the printer. Based on RFC2911 and RFC2910.
*/
/*
* Status code classes.
*/
#define STATCLASS_OK
www.eeworm.com/read/144441/12791809
htm chap18.htm
Intro to Algorithms: CHAPTER 18: AMORTIZED ANALYSIS
www.eeworm.com/read/144129/12811873
txt readme.txt
Comments for Realtek Fast Ethernet Driver rtl8139.c version 1.0
2001/10/24 ShuChen Shao
1.This driver is based on rtl8139.c version 1.11 written by Donald Becker
and modified by Clifford Chiang
www.eeworm.com/read/331632/12817461
eqn gei_lei.map.eqn
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any o
www.eeworm.com/read/331265/12836414
txt rel-ops.txt
1.
SELECT Title, Price
FROM BOOK
WHERE PublisherID IN (SELECT PublisherID
FROM PUBLISHER
WHERE Name = 'Electronics Industry' OR Name = 'NWPU Press');
2.
SELECT Name
FROM Publisher
WHE