搜索结果
找到约 699 项符合
include 的查询结果
按分类筛选
- 全部分类
- 技术资料 (102)
- 单片机开发 (55)
- 单片机编程 (40)
- 其他 (40)
- 源码 (23)
- Linux/Unix编程 (22)
- 其他书籍 (19)
- 编译器/解释器 (17)
- 数学计算 (15)
- 书籍 (14)
- 人工智能/神经网络 (14)
- 数据结构 (14)
- 微处理器开发 (14)
- VC书籍 (13)
- 数值算法/人工智能 (11)
- 书籍源码 (11)
- matlab例程 (11)
- 其他嵌入式/单片机内容 (11)
- 汇编语言 (10)
- C/C++语言编程 (9)
- Java编程 (9)
- 电子书籍 (8)
- 压缩解压 (7)
- 嵌入式/单片机编程 (7)
- Delphi控件源码 (7)
- 软件设计/软件工程 (7)
- 加密解密 (6)
- 软件工程 (6)
- 驱动编程 (6)
- 网络 (6)
- VHDL/FPGA/Verilog (6)
- 其他行业 (6)
- DSP编程 (5)
- 多媒体处理 (5)
- 通讯/手机编程 (5)
- 模拟电子 (5)
- 可编程逻辑 (5)
- Internet/网络编程 (5)
- 游戏 (5)
- SCSI/ASPI (5)
- 嵌入式Linux (5)
- Windows CE (5)
- 电源技术 (4)
- 嵌入式综合 (4)
- 教程资料 (4)
- 其他数据库 (4)
- 通讯编程文档 (4)
- Java书籍 (4)
- VIP专区 (4)
- 软件 (3)
- 笔记 (3)
- 数据库系统 (3)
- 操作系统开发 (3)
- ARM (3)
- 编辑器/阅读器 (3)
- 文章/文档 (3)
- VxWorks (3)
- 系统设计方案 (3)
- Jsp/Servlet (3)
- Linux/uClinux/Unix编程 (2)
- 教育系统应用 (2)
- *行业应用 (2)
- 金融证券系统 (2)
- 文件格式 (2)
- 中间件编程 (2)
- SQL Server (2)
- 行业发展研究 (2)
- GPS编程 (2)
- 手册 (1)
- 行业应用文档 (1)
- 无线通信 (1)
- 设计相关 (1)
- PCB图/BOM单/原理图 (1)
- 技术书籍 (1)
- 教材/考试/认证 (1)
- 资料/手册 (1)
- 开发工具 (1)
- 教程资料 (1)
- Modem编程 (1)
- 语音压缩 (1)
- 传真(Fax)编程 (1)
- 技术管理 (1)
- USB编程 (1)
- uCOS (1)
- 手机WAP编程 (1)
- STL (1)
- Delphi/CppBuilder (1)
- 家庭/个人应用 (1)
- Symbian (1)
- TAPI编程 (1)
- Oracle数据库 (1)
- JavaScript (1)
- MySQL数据库 (1)
- 邮电通讯系统 (1)
- 并行计算 (1)
单片机编程 串行编程器源程序(Keil C语言)
串行编程器源程序(Keil C语言)//FID=01:AT89C2051系列编程器//实现编程的读,写,擦等细节//AT89C2051的特殊处:给XTAL一个脉冲,地址计数加1;P1的引脚排列与AT89C51相反,需要用函数转换#include <e51pro.h>
#define C2051_P3_7&nbsp;P1_0#define C2051_P1&nbsp;P0//注意引脚排列相反#define C2051_P3_0 &nbsp;P1_1#define ...
技术资料 嵌入式C语言编程与MicrochipPIC
本书全面系统地介绍了C语言编程技术及其在嵌入式微控制器中的应用,其中包括嵌入式C语言、PIC微控制器的硬件、标准I/O和处理器指令、CCSPICC C编译器和IDE、项目开发等各种技术,并在附录中扼要介绍了库函数和PIC微控制器编程。全书内容翔实、结构清晰、技术准确, 是学生掌握和提高C语言编程技术的首选教材。
目 录
第 ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
嵌入式综合 红外遥控RGB
#include "STC90.h"
#include < intrins.h >
#define uchar unsigned char
#define uint unsigned int
#define led_port P1
sbit IR_RE = P3^2;
sbit led_r = P1^3;
sbit led_g = P1^4;
sbit led_b = P1^5;
sbit led_wd = P1^7;
sbit K1 =P3^0 ; //增加键
sbit K2 =P3^1 ; ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
软件 道理特分解法
#include "iostream" using namespace std;
class Matrix
{
private:
double** A; //矩阵A
double *b; //向量b
public:
int size;
Matrix(int );
~Matrix();
friend double* Dooli(Matrix& );
void Input();
void Disp();
};
Matrix::Matrix(int x) {
size= ...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...