-
关于汇编语言一些进制的转换方法
关于汇编语言一些进制的转换方法-language on the compilation of some band Conversion
- 2023-07-23 08:35:03下载
- 积分:1
-
Principle of Microcomputer experimental procedures, including 8255,8253,8259
微机原理实验的程序,包括8255,8253,8259-Principle of Microcomputer experimental procedures, including 8255,8253,8259
- 2022-08-10 09:33:45下载
- 积分:1
-
微机原理与接口技术课程设计实验报告
实验一 电子琴
微机原理与接口技术课程设计实验报告
实验一 电子琴-principle of the computer and interface technology curriculum design an experiment report experimental flower
- 2022-03-11 15:26:44下载
- 积分:1
-
Registry Edit Sample code
Registry Edit Sample code
- 2022-08-21 08:18:40下载
- 积分:1
-
一些汇编例子
一些汇编例子-Compilation of examples of some
- 2022-03-12 18:44:22下载
- 积分:1
-
本人做温度测试显示实验时所用的编码程序,拿出来大家参考的下吧...
本人做温度测试显示实验时所用的编码程序,拿出来大家参考的下吧-I do temperature tests showed that when the experimental procedure used coding up the next reference to it
- 2022-05-27 17:23:04下载
- 积分:1
-
油烟机的程序说明代码 大厂定制 该型号已经生产几W台 程序稳定...
油烟机的程序说明代码 大厂定制 该型号已经生产几W台 程序稳定-smoke machine code description of the procedures for large customized production of the model has several procedures W Taiwan stability
- 2022-03-16 13:18:38下载
- 积分:1
-
该程序用vb编写,程序是用于声卡测试的源码.
该程序用vb编写,程序是用于声卡测试的源码.-the procedures used to prepare vb, procedures for testing the sound card source.
- 2022-02-01 09:03:59下载
- 积分:1
-
查找硬盘坏扇区并快速标出坏扇区 (FindBad v1.3)
查找硬盘坏扇区并快速标出坏扇区 (FindBad v1.3)-you drive bad sector and the rapid deterioration marked Sector (FindBad v1.3)
- 2022-07-01 05:39:49下载
- 积分: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