搜索结果
找到约 1,993 项符合
AVC-H 的查询结果
嵌入式/单片机编程 h.264的码流结构
h.264的码流结构,详细说明了h.264的输出码流结构
matlab例程 matlib.h头文件是vc和matlab混合编程的接口头文件
matlib.h头文件是vc和matlab混合编程的接口头文件,主要是简化vc中的数学公式计算
数据结构 实现最优二叉树的构造;在此基础上完成哈夫曼编码器与译码器。 假设报文中只会出现如下表所示的字符: 字符 A B C D E F G H I J K L M N 频度 186 64 13 22
实现最优二叉树的构造;在此基础上完成哈夫曼编码器与译码器。 假设报文中只会出现如下表所示的字符:
字符 A B C D E F G H I J K L M N
频度 186 64 13 22 32 103 21 15 47 57 1 5 32 20 57
字符 O P Q R S T U V W X Y Z , .
频度 63 15 1 48 51 80 23 8 18 1 16 1 6 2
要求完成的系统应具备如下的功能:
1 ...
单片机开发 1. sdconfig.h: 该文件为SD卡读写模块配置头文件
1. sdconfig.h: 该文件为SD卡读写模块配置头文件,用户可根据实际硬件条件进行修改.
2. SD目录: SD卡读写模块的全部文件,一般不用修改.
3. 建议sdconfig.h文件不要放于SD目录中,因为SD目录中的文件一般无须修改, 而sdconfig.h通常会有改动. ...
汇编语言 用汇编语言来使键盘成为一个演奏音乐的电子琴。高音依次1,2,3,4,5,6,7 。中音依次为q,w,e,r,t,y,u 。低音依次为a,s,d,f,g,h,j
用汇编语言来使键盘成为一个演奏音乐的电子琴。高音依次1,2,3,4,5,6,7 。中音依次为q,w,e,r,t,y,u 。低音依次为a,s,d,f,g,h,j
电子书籍 算法设计与分析-英文版 阿苏外耶Alsuwaiyel,M.H著
算法设计与分析-英文版 阿苏外耶Alsuwaiyel,M.H著
Linux/Unix编程 linux 下串口编程 #include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #include
linux 下串口编程
#include <stdio.h> /*标准输入输出定义*/
#include <stdlib.h> /*标准函数库定义*/
#include <unistd.h> /*Unix标准函数定义*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定义*/
#include <termios.h> /*PPSIX终端控制定义*/
#include <errno.h> /*错误号定 ...
嵌入式/单片机编程 #include <reg52.h> #include <stdio.h> #include <string.h> #define uchar unsigne
#include <reg52.h>
#include <stdio.h>
#include <string.h>
#define uchar unsigned char
#define uint unsigned int
#define isp_iap_byte_read 0x1
#define isp_iap_byte_program 0x2
#define isp_iap_sector_erase 0x3
#define wait_time 0x1
游戏 五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h
五子棋小游戏#include<stdlib.h>
#include<time.h>
#include<stdio.h>
#include<conio.h>
int chess[169]={0} /*棋盘*/
struct chess_t/*作为辅助,即是作为建意*/
{
char attack /*攻防用的,0表示守,1表示攻*/
int j /*作为优先级用*/
}chess_a[169] ...
单片机开发 单字右移1616点阵右移C程序16bit #include<reg51.h> #include<intrins.h> sbit DAT=P1^0 /*"74HC59
单字右移1616点阵右移C程序16bit
#include<reg51.h>
#include<intrins.h>
sbit DAT=P1^0 /*"74HC595第14脚 数据 ",0*/
sbit YW=P1^1 /*"74HC595第11脚 移位存 ",0*/
sbit SUO=P1^2 /*"74HC595第12脚 锁存 ",0*/