-
可执行文件向二进制文件的转换。能够将所有可执行文件转换成相应的二进制文件。...
可执行文件向二进制文件的转换。能够将所有可执行文件转换成相应的二进制文件。-executable binary files to the conversion. All can be converted into executable files corresponding to the binary files.
- 2022-03-10 22:33:30下载
- 积分:1
-
Smart Tuner, 255 Channel storage, 3010 remote control, automatic resumption of T...
智能选台器,255个频道存储,3010遥控器,全自动收台-Smart Tuner, 255 Channel storage, 3010 remote control, automatic resumption of Taiwan
- 2022-01-30 12:42:45下载
- 积分:1
-
16个按键的 程序, 具体按照扫描的,时间快
16个按键的 程序, 具体按照扫描的,时间快-16 key procedures, specifically in accordance with the scan, time speed
- 2022-02-12 22:23:04下载
- 积分:1
-
迷你字库,是HEX文件,值得看看学习哈!
迷你字库,是HEX文件,值得看看学习哈!-Mini font is HEX file, it is worth studying to see Ha!
- 2022-03-30 14:30:28下载
- 积分:1
-
PIC16位乘除法
PIC16位乘除法-PIC16- multiplication and division
- 2022-01-27 11:41:59下载
- 积分:1
-
基于51的数字时钟汇编设计,最基础的部分,采用动态显示。
基于51的数字时钟汇编设计,最基础的部分,采用动态显示。-Based on 51 digital clock assembly design, the most basic part of the dynamic display.
- 2023-03-05 03:50:04下载
- 积分:1
-
s51 iap下载监控程序 驱动程序用串口测试程序就可以 无需安装...
s51 iap下载监控程序 驱动程序用串口测试程序就可以 无需安装-download monitoring program using serial driver testing procedures need not be installed
- 2022-08-13 12:04:58下载
- 积分:1
-
基于DSP2407的快速傅里叶变换程序,来源合众达DSP例程
基于DSP2407的快速傅里叶变换程序,来源合众达DSP例程-fast fourier transform BASED ON DSP
- 2022-02-05 18:27:34下载
- 积分:1
-
红外线数据通信系统开发,汇编语言,Keil C51开发环境
红外线数据通信系统开发,汇编语言,Keil C51开发环境-Infrared data communication system development, assembly language, Keil C51 Development Environment
- 2022-12-24 05:35:03下载
- 积分: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