-
出租车计价器
出租车计价器!启动,复位,proteus汇编的功能完全
- 2022-02-15 13:44:33下载
- 积分:1
-
液晶显示器LCM320240驱动程序,和触摸驱动程序。
液晶显示器LCM320240驱动程序,和触摸驱动程序。-LCM320240 liquid crystal display drivers, and touch driver.
- 2022-07-22 02:30:46下载
- 积分:1
-
改程序通过使用8254和8255以及其他一些辅助芯片实现了一个简单但功能比较完善的电子钟...
改程序通过使用8254和8255以及其他一些辅助芯片实现了一个简单但功能比较完善的电子钟-Reform process through the use of 8254 and 8255, as well as other ancillary chip features a simple but fairly complete electronic bell
- 2022-08-11 05:41:30下载
- 积分:1
-
一个电子密码锁源程序
来源:网上搜集
尚未实验验证
一个电子密码锁源程序
来源:网上搜集
尚未实验验证-an electronic password lock source Source : Internet yet to collect experimental verification
- 2023-06-02 12:10:03下载
- 积分:1
-
这是一个汇编语言文件,利用8051进行串行通信的设计.
这是一个汇编语言文件,利用8051进行串行通信的设计.-This is a compilation of language paper, using 8051 serial communication design.
- 2023-04-25 11:35:03下载
- 积分:1
-
扩展存储器实验
运行步骤:1. 将平台板上存储器电源的跳接开关连上 *
* 2. 源程序编译,连接,运行 *
* 3. 运行后,在屏幕显示的结...
扩展存储器实验
运行步骤:1. 将平台板上存储器电源的跳接开关连上 *
* 2. 源程序编译,连接,运行 *
* 3. 运行后,在屏幕显示的结果中查看 *
* BUF2中的内容是否和BUF1的内容一致 *-Steps to expand the memory to run the experiment: 1. Will be the platform on-board storage power supply connected to the tap-dancing* * 2. Source compiler, connectivity, run* * 3. Running, display the results in view* * BUF2 whether the content and the content of BUF1 line*
- 2022-02-14 17:26:07下载
- 积分:1
-
多位的加减运算,允许有负数.
多位的加减运算,允许有负数.-number of addition and subtraction operations and allow a negative.
- 2023-09-08 03:40:02下载
- 积分:1
-
HT16512 VFD控制器的使用,采用ASM语言
HT16512 VFD控制器的使用,采用ASM语言-HT16512 VFD controller use, the use of ASM language
- 2022-11-12 14:40:03下载
- 积分:1
-
用汇编语言实现了精确频率计。实验已经通过
用汇编语言实现了精确频率计。实验已经通过-Using assembly language to achieve a precise frequency meter. Experiment has been passed
- 2022-10-07 02:25:02下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1