搜索结果

找到约 250 项符合 CHAR 的查询结果

操作系统开发 我所采用的内存管理思想是链表管理思想

我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
https://www.eeworm.com/dl/531/317249.html
下载: 49
查看: 1076

汇编语言 C51精确延时分析探讨 从精度考虑

C51精确延时分析探讨 从精度考虑,它得研究结果是: void delay2(unsigned char i) { while(--i) } 为最佳方法。
https://www.eeworm.com/dl/644/320157.html
下载: 158
查看: 1025

Linux/Unix编程 #include "REG51.H" #include <intrins.h> #include "Common.h" //#include "Remote.h" #def

#include "REG51.H" #include <intrins.h> #include "Common.h" //#include "Remote.h" #define OSD_EN //typedef unsigned char uCHAR //#include "T100Data_A.h" //#include "T100Data_PA.h" //#include "T100Data_AU.h" //#include "T100Data_CPT.h" //#include "T100Data_PANASONIC.h" //#include "T100Data_PVI7.h ...
https://www.eeworm.com/dl/619/323087.html
下载: 107
查看: 1143

单片机开发 TLC1543驱动

TLC1543驱动,添加到自己的项目里,调用 read1543(unsigned char port) 读取AD值,port是通道号!
https://www.eeworm.com/dl/648/325434.html
下载: 140
查看: 1041

操作系统开发 操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct

操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name[10] /*进程标识符*/ int prio /*进程优先数*/ int round /*进程时间轮转时间片*/ int cputime /*进程占用CPU时间*/ int needtime /*进程到完成还要的时间*/ int count /*计数器* ...
https://www.eeworm.com/dl/531/330760.html
下载: 46
查看: 1096

嵌入式/单片机编程 #include <stc12c2052AD.H>// 标准库的头文件 #include <intrins.h> #include <absacc.h> #d

#include <stc12c2052AD.H>// 标准库的头文件 #include <intrins.h> #include <absacc.h> #define uchar unsigned char #define uint unsigned int
https://www.eeworm.com/dl/647/339308.html
下载: 104
查看: 1401

单片机开发 void InitGoertzel(void) 作用:初始化算法参数 用法:采用算法进行检测前执行一次

void InitGoertzel(void) 作用:初始化算法参数 用法:采用算法进行检测前执行一次,如果需要改变参数,调用SetParameter() float CGoertzel::GetMagnitude(unsigned char * sampleData, int length) //算法主接口 作用:对采集下来的音频数据用算法处理,返回一个结果 参数:sampleData-音频数据缓冲地址指针; length ...
https://www.eeworm.com/dl/648/344559.html
下载: 91
查看: 1059

操作系统开发 读取配置文件(ini格式)的程序

读取配置文件(ini格式)的程序,可返回int,char*,float类型等的配置项数值。
https://www.eeworm.com/dl/531/349039.html
下载: 113
查看: 1061

Java编程 统计字符数组中字母

统计字符数组中字母,数字,符号的出现个数 char[] c = { 2 , c , $ , 4 , 7 , Z , j , ~ , p , c }
https://www.eeworm.com/dl/633/357051.html
下载: 100
查看: 1038

加密解密 一个C++的DES算法源码.引入工程中即可使用

一个C++的DES算法源码.引入工程中即可使用,加解密的函数分别是DES(char *key,char *s_text,char *d_text)和_DES(char *key,char *s_text,char *d_text) 使用上也比较方便
https://www.eeworm.com/dl/519/361648.html
下载: 146
查看: 1034