虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

INclude

INclude是一个计算机专业术语,一指C/C++中包含头文件命令,用于将指定头文件嵌入源文件中。二指INclude指令,在JSP中包含一个静态的文件,同时解析这个文件中的JSP语句。三指PHP语句。
  • The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C.

    The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C. Slater. Also INcluded are a number of help files, demonstration examples, and data files containing raw experimental data. The codes INclude single degree of freedom response, response spectrum, finite elements, numerical integration, and phase plane analysis.

    标签: C. Engineering educational Vibration

    上传时间: 2013-11-29

    上传用户:jkhjkh1982

  • Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to cap

    Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to capture and monitor internet packets using either raw sockets or the WinPcap device driver. Hardware permitting, ethernet packets may be captured and interpreted, and statistics maintained about the traffic. Uses of packet monitoring INclude totalling internet traffic by IP address and service, monitoring external or internal IP addresses and services accessed, network diagnostics, and many other applications. The component INcludes two demonstration applications, one that displays raw packets, the other that totals internet traffic. The components INclude various filters to reduce the number of packets that need to be processed, by allowing specific IP addresses to be ignored, LAN mask to ignore local traffic, and ignore non-IP traffic such as ARP.

    标签: Components Monitoring components Internet

    上传时间: 2015-10-30

    上传用户:水中浮云

  • 词法分析器制作与应用 设计思想 (1)程序主体结构部分: 说明部分 %% 规则部分 %% 辅助程序部分 (2)主体结构的说明 在这里说明部分告诉我们使用的LETTER,DIGIT,

    词法分析器制作与应用 设计思想 (1)程序主体结构部分: 说明部分 %% 规则部分 %% 辅助程序部分 (2)主体结构的说明 在这里说明部分告诉我们使用的LETTER,DIGIT, IDENT(标识符,通常定义为字母开头的字母数字串)和STR(字符串常量,通常定义为双引号括起来的一串字符)是什么意思.这部分也可以包含一些初始化代码.例如用#INclude来使用标准的头文件和前向说明(forward ,references).这些代码应该再标记"%{"和"%}"之间 规则部分> 可以包括任何你想用来分析的代码 我们这里包括了忽略所有注释中字符的功能,传送ID名称和字符串常量内容到主调函数和main函数的功能. (3)实现原理 程序中先判断这个句语句中每个单元为关键字、常数、运算符、界符,对与不同的单词符号给出不同编码形式的编码,用以区分之。 PL/0语言的EBNF表示 <常量定义>::=<标识符>=<无符号整数> <标识符>::=<字母>={<字母>|<数字>} <加法运算符>::=+|- <乘法运算符>::=*|/ <关系运算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <数字>::=0|1|2|…|8|9

    标签: LETTER DIGIT 程序

    上传时间: 2015-11-04

    上传用户:zhengzg

  • arm9的bootloader,适合通用2410x平台 vivi.pal(20051228)支持tv输出和vga输出

    arm9的bootloader,适合通用2410x平台 vivi.pal(20051228)支持tv输出和vga输出,vclk为26.25mhz vivi(20060330)支持vga输出和tv输出,vclk为25mhz 以上两个vivi均编译自vivi-br-release(20051228).tar.gz 在两个不同vivi间切换的方法是在源文件“/INclude/platform/smdk2410.h”中打开或者取消对PAL640480宏的定义: #define PAL640480 默认该句是注释掉的,编译得到的vivi的vclk为25mhz ch7005手册中要求640x480的pal输出时vclk为26.25mhz,但实践中发现并不需要完全等与这个频率,有时候vivi(20051228)的pal效果更好,具体使用哪个参数用户可以多比较尝试,也可以尝试修改成其他的频率。

    标签: bootloader 20051228 2410x arm9

    上传时间: 2013-12-16

    上传用户:cainaifa

  • 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序

    实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #INclude "iostream.h" #INclude <malloc.h> #define LIST_INTI_SIZE 100//初始空间大小 typedef struct SqList

    标签: 实习 元素 顺序表 数据

    上传时间: 2014-01-14

    上传用户:fhzm5658

  • [输入] 图的顶点个数N

    [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达B点的路径,一定是边数最少的路径。实现时采用队列记录被访问过的顶点。每次访问与队头顶点相邻接的顶点,然后将队头顶点从队列中删去。若队空,则说明到不存在通路。在访问顶点过程中,每次把当前顶点的序号作为与其邻接的未访问的顶点的前驱顶点记录下来,以便输出时回溯。 #INclude<stdio.h> int number //队列类型 typedef struct{ int q[20]

    标签: 输入

    上传时间: 2015-11-16

    上传用户:ma1301115706

  • 1.[问题描述] 编写递归算法

    1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点。根据左右子树的最后一个结点计算出二叉树中叶子结点的数目。 程序如下: #INclude<stdio.h> #INclude<malloc.h> #INclude"stdlib.h"

    标签: 编写 算法 递归

    上传时间: 2015-11-16

    上传用户:GavinNeko

  • 2.[问题描述] 编写递归算法

    2.[问题描述] 编写递归算法,在二叉树中求位于先序序列中第K个位置的结点 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g 。输入要求的位置 [输出] 若二叉树不空,按先序序列输出,求出所求位置的结点 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,先序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点并计算出二叉树中叶子结点的数目和第K个位置的结点 #INclude<stdio.h> #INclude<malloc.h> struct node{ char info struct node*llink,*rlink } typedef struct node NODE

    标签: 编写 算法 递归

    上传时间: 2014-01-13

    上传用户:zm7516678

  • [问题描述] 将N个关键字去整数的记录进行整序

    [问题描述] 将N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N) [输入] 待排序记录个数,各关键字的值。 [输出] 关键字从正负分开,正数在前 [存储结构] 待排序记录顺序存储。 [算法的基本思想] 快速排序算法每次任取一个记录的关键字为标准,将其余记录分为两组将,N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前。 #INclude <iostream> using namespace std #define MAXNUM 100//设文件的最长可能长度 void sort(int* keys, const int len)//排序

    标签: 整数 记录

    上传时间: 2014-01-13

    上传用户:aig85

  • Software Testing, Second Edition provides practical insight into the world of software testing and q

    Software Testing, Second Edition provides practical insight into the world of software testing and quality assurance. Learn how to find problems in any computer program, how to plan an effective test approach and how to tell when software is ready for release. Updated from the previous edition in 2000 to INclude a chapter that specifically deals with testing software for security bugs, the processes and techniques used throughout the book are timeless. This book is an excellent investment if you want to better understand what your Software Test team does or you want to write better software.

    标签: practical Software provides software

    上传时间: 2014-08-01

    上传用户:zhaiyanzhong