搜索结果
找到约 624 项符合
INCLUDE 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (54)
- 其他 (40)
- 单片机编程 (40)
- 技术资料 (28)
- 源码 (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)
- Delphi控件源码 (7)
- 嵌入式/单片机编程 (7)
- 软件设计/软件工程 (7)
- 驱动编程 (6)
- 网络 (6)
- 其他行业 (6)
- 加密解密 (6)
- 软件工程 (6)
- VHDL/FPGA/Verilog (6)
- 多媒体处理 (5)
- 模拟电子 (5)
- 可编程逻辑 (5)
- SCSI/ASPI (5)
- Internet/网络编程 (5)
- 嵌入式Linux (5)
- 游戏 (5)
- DSP编程 (5)
- Windows CE (5)
- 通讯/手机编程 (5)
- 电源技术 (4)
- 教程资料 (4)
- Java书籍 (4)
- 通讯编程文档 (4)
- 其他数据库 (4)
- 嵌入式综合 (4)
- VIP专区 (4)
- ARM (3)
- 系统设计方案 (3)
- VxWorks (3)
- Jsp/Servlet (3)
- 操作系统开发 (3)
- 数据库系统 (3)
- 文章/文档 (3)
- 编辑器/阅读器 (3)
- 软件 (3)
- 笔记 (3)
- 中间件编程 (2)
- 文件格式 (2)
- 教育系统应用 (2)
- GPS编程 (2)
- SQL Server (2)
- 行业发展研究 (2)
- 金融证券系统 (2)
- *行业应用 (2)
- Linux/uClinux/Unix编程 (2)
- 行业应用文档 (1)
- 资料/手册 (1)
- 教程资料 (1)
- 无线通信 (1)
- 技术书籍 (1)
- 开发工具 (1)
- 设计相关 (1)
- STL (1)
- Oracle数据库 (1)
- Delphi/CppBuilder (1)
- 邮电通讯系统 (1)
- 语音压缩 (1)
- 并行计算 (1)
- 传真(Fax)编程 (1)
- Modem编程 (1)
- 家庭/个人应用 (1)
- uCOS (1)
- 手机WAP编程 (1)
- USB编程 (1)
- MySQL数据库 (1)
- TAPI编程 (1)
- JavaScript (1)
- Symbian (1)
- 技术管理 (1)
- PCB图/BOM单/原理图 (1)
- 教材/考试/认证 (1)
- 手册 (1)
源码 c语言算法排序
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
#include<stdio.h>
#include<stdlib.h>
void merge(int arr[],int low,int mid,int high){
&nbsp; ...
源码 点亮P10单元板单片机源程序
/*=================================================================
4扫16*16下入上出C语言程序, 低位起笔,数据反相。
预定义
**************************************************************/
#include
#include //可使用其中定义的宏来访问绝对地址?
bit ture=1; // 使能正反相位选择
bit false=0; / ...
源码 12345
/****************temic*********t5557***********************************/ &nbsp;&nbsp;
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
笔记 一个按键控制的 10 级变速跑马灯试验
在本课中,我们要用一个按键来实现跑马灯的 10 级调速。这又会涉及到键的去抖的问
题。&nbsp;
本课的试验结果是,每按一次按键,跑马速度就降低一级,共 10 级。&nbsp;
这里我们又增加了一个变量 speedlever,来保存当前的速度档次。&nbsp;
在按键里的处理中,多了当前档次的延时值的设置。&nbsp;
请看程序:&nbsp;
―― ...
笔记 模拟 PWM 输出控制灯的 10 个亮度级别
LED 一般是恒流操作的,如何改变 LED 的亮度呢?答案就是 PWM 控制。在一定的
频率的方波中,调整高电平和低电平的占空比,即可实现。比如我们用低电平点亮一个 LED
灯,我们假设把一个频率周期分为 10 个时间等份,如果方波中的高低电平占空比是 9:1,
这是就是一个比较暗的亮度,如果方波中高低电平占空比是 10:0,这时 ...
笔记 编写一个程序,要求用户输入一年12个月每月的降雨总量,并采用一个float数组存储。
程序显示:
一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。
#include<iostream>
using namespace std;
#include<stdlib.h>
int main()
..
..
..
cout<<"降雨量最小的月份是:"<<minyue<<"月 &nbsp; "<<"降雨量为:"<<min<<endl;
} ...
源码 数据结构实验
#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>
#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 "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<windows.h>
int xuanxiang;
int studentcount;
int banjihao[100];
int xueqihao[100][10];
char xm[100][100];
int xuehao[100][10];
int score[100][3];
int yuwen;
int shuxue[000];
int yingyu[100];
int c[100];
int p;
char x[1000][100]="",y[100][100]="";/*x学院 y专业 z班级*/&nbsp;
...