搜索资源列表
可预置的8位计数器源程序
- 可预置的8位计数器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //变量类型的宏定义 #define uint unsigned int uchar code SEG7[10]={0x03,0x9f,0x25,0x0d,0x99, //0~9的数码管段码 0x49,0x41,0x1f,0x01,0x09} uchar data cnt[8] //在da
Visitor
- 设计模式——访问者模式 Visitor模式允许我们在不改动原有结构的基础之上不断增加新的功能。 ICumulation接口定义了方法Cumulate(),旨在计算1+2+……+n,有两种不同的实现方法,一个是一般的叠加算法GeneralArithmetic,一个是高斯算法GaoSiArithmetic。 因为某种原因,系统需要添加求平均值的功能,还有计算1到n的平方和。 按照一般的思路,我们需要在ICumulation中定义两个方法分别计算平均值和平方和,并在实现类中同
xianxingbiao
- 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #include \"iostream.h\" #include <malloc.h> #define LIST_INTI_SIZE 1
#define的用法
- #define的用法 #ifndef #define #endif的用法
汇编代码中对C函数调用时如何进行参数的传递以及如何从C函数正确返回
- 对于ARM体系来说,不同语言撰写的函数之间相互调用(mix calls)遵循的是 ATPCS(ARM-Thumb Procedure Call Standard),ATPCS主要是定义了函数呼叫时参数的传递规则以及如何从函数返回,关于ATPCS的详细内容可以查看ADS1.2 Online Books ——Developer Guide的2.1节。这篇文档要讲的是汇编代码中对C函数调用时如何进行参数的传递以及如何从C函数正确返回,ARM system for example, written in
2008.10.5
- 本系统的主要功能是用来帮助医院核算部门实现医院内部部分或全部科室费用核算。该软件允许用户自己定义核算会计科目,核算公式,以及核算数据源,并提供打印功能,用户可根据自己需要打印各类核算报表。 本系统通过对门诊、住院、药品、库房、财务等系统数据的采集和手工录入数据相结合的办法完成全院各科室(个人)的收入、支出和工作量数据的收集,经过汇总统计完成对全院各科室(个人)的核算。 -The main functions of the system is used to help the hospit
wenzhouxueyuan
- #include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针
cc2430pinconfig
- cc2430引脚配置 如#define IO_ADC_PORT0_PIN[pin, adcEn]-cc2430 for example:#define IO_ADC_PORT0_PIN[pin, adcEn]
adi_ssl_Init
- The files adi_ssl_init.h and adi_ssl_init.c are used to define the functions adi_ssl_Init() and 慳di_ssl_Terminate()?which initialize and terminate all the Blackfin System Services in the appropriate order, for a particular EZ-Kit, depending
ac4
- 用C语言的源代码来定义一个队列 -Using C language source code to define a queue
55645
- 10种软件滤波方法的示例程序 1、限副滤波 /* A值可根据实际情况调整 value为有效值,new_value为当前采样值 滤波程序返回有效的实际值 */ #define A 10 char value char filter() { char new_value new_value = get_ad() if ( ( new_value - value > A ) || ( value - new_value
sunxuzhan
- 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct-#include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef
minipci
- MINIPCI 接口规范,包含物理,数据,等等内容-The Mini PCI Specification defines an alternate implementation for small form factor PCI cards referred to in this specification as a Mini PCI Card. This specification uses a qualified sub-set of the same signal protoco
HideToolz_v2.1
- HideToolz is intended for hiding crackers tools from different protection trying define their presence.
web_manager
- 定义目标(Define Objectives) 定义交付物(Define Deliverables) 对计划的交流沟通(Communication Planning) -The definition of goals (Define Objectives) definition of deliverables (Define Deliverables) of the communication plan (Communication Planning)
AW37
- user Define Function Program
AddisonWesley_PatternsforEffectiveUseCases
- Patterns for Effective Use Cases provides this set of objective criteria. Written by experienced use case practitioners, this book fills a critical information gap by presenting a pattern language that contains over thirty patterns, providing simple,
CompareDate
- program define comparing dates
xijiejuedingchengbai
- 细节决定成败管理类丛书 细节决定成败管理类丛书-details define success
How-to-define-a-function-in-MATLAB
- MATLAB如何定义函数文件,对于使用matlab时,当发现没有合适的库函数,就需要自己定义函数了,此文档可帮助你-How MATLAB function definition file, for the use of matlab, when found no suitable library functions, you need to define your own functions, and this document can help you