搜索结果
找到约 620 项符合
up-techpxa 的查询结果
单片机开发 The XC226x derivatives are high-performance members of the Infineon XC2000 Family of full-feature s
The XC226x derivatives are high-performance members of the Infineon XC2000 Family
of full-feature single-chip CMOS microcontrollers. These devices extend the functionality
and performance of the C166 Family in terms of instructions (MAC unit), peripherals, and
speed. They combine high CPU performanc ...
其他书籍 This paper addresses the subject of SQL Injection in a Microsoft SQL Server/IIS/Active Server Page
This paper addresses the subject of SQL Injection in a Microsoft SQL Server/IIS/Active
Server Pages environment, but most of the techniques discussed have equivalents in other
database environments. It should be viewed as a "follow up", or perhaps an appendix, to
the previous paper, "Advanced SQL ...
通讯编程文档 H.264/AVC, the result of the collaboration between the ISO/IEC Moving Picture Experts Group and the
H.264/AVC, the result of the collaboration between the ISO/IEC
Moving Picture Experts Group and the ITU-T Video Coding
Experts Group, is the latest standard for video coding. The goals
of this standardization effort were enhanced compression efficiency,
network friendly video representation for inte ...
Jsp/Servlet 是用java和jsp实现的bbs论坛系统。 有注册登陆模块
是用java和jsp实现的bbs论坛系统。 有注册登陆模块,浏览功能模块,发帖回帖模块,帖子管理模块,论坛设置功能模块,管理版块功能模块,用户管理模块。-is java and jsp realized bbs forum system. Registered landing module, navigation module, barred when posting module, message management module, the Forum set ...
微处理器开发 44b0公版的测试程序
44b0公版的测试程序, *******************************************************
* NAME : 44BINIT.S *
* Version : 10.JAn.2003 *
* Description: *
* C start up codes *
* Configure memory, Initialize ISR ,stacks *
* Initialize C-variables *
* Fill zeros into zero-initialized C-varia ...
编辑器/阅读器 FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPAC
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
Linux/Unix编程 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a
开源备份软件源码
AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that allows the administrator to set up a single master backup server to back up multiple hosts over network to tape drives/changers or disks or optical media. Amanda uses native dump and/or GNU tar f ...
嵌入式/单片机编程 xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度
xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。
DS18B20温度控制数码管显示 :
1、K3 → 进入设定温度报警值 TL 状态: L--20
2、K3 → 进入设定温度报警值 TH 状态: H--28
3、K3 → 返回
4、设定过程: K1 →加键 (UP), K2 →减键 (DOWN),可快速调。 ...
数据结构 void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=
void Knight(int i , int j)
{
// printf("%d %dn",i,j)
if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size )
{
return
}
step++
board[i][j]=step
if (step == Size*Size)
{
showboard()
system("PAUSE")
return
}
//DFS
Knight(i-2,j-1) //left
Knight(i-2,j+1)
Knight(i+2,j-1) //right ...