-
#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
-
汇编语言经典程序1
汇编语言经典程序1-assembly language procedures a classic
- 2022-02-01 16:53:11下载
- 积分:1
-
这是用汇编语言开发的一种输入方法,简单灵活,词库多,已经在使用,但词库灵活程度还有待开发。...
这是用汇编语言开发的一种输入方法,简单灵活,词库多,已经在使用,但词库灵活程度还有待开发。-This is the development of assembly language with an input method, simple, flexible, thesaurus, and already in use, but also the flexibility of the thesaurus to be developed.
- 2022-01-25 20:38:20下载
- 积分:1
-
StuMan学生成绩管理系统是一个使用MASM宏汇编语言开发的试验性项目。它实现了学生学号、姓名、三门课程成绩的录入、修改、删除以及总成绩计算、按成绩排序等功能...
StuMan学生成绩管理系统是一个使用MASM宏汇编语言开发的试验性项目。它实现了学生学号、姓名、三门课程成绩的录入、修改、删除以及总成绩计算、按成绩排序等功能,并且可以将数据保存为磁盘文件,便于再次打开编辑。
程序基于DOS或Windows命令行模式运行,全屏显示,使用简单的键盘命令进行操作。可处理100条(可扩充)以内的学生记录。在DOS汉字系统的支持下可正确处理中文信息。-StuMan student achievement management system is a MASM macro assembler language using the development of pilot projects. It achieved its students, the names of three courses achievements entry, modify, delete, and a total score of computing, such as merit-based ranking function, and data can be saved as disk files, easy to open the editor again. Procedures based on DOS or Windows command-line mode, full screen display, using a simple keyboard commands to operate. Can handle 100 (which can be expanded) of students within the record. Chinese characters in DOS system can correctly deal with the support of Chinese information.
- 2022-08-06 14:18:39下载
- 积分:1
-
国标 DLT
国标 DLT-1997 645通讯协议 汇编代码-645 communication protocol assembly code
- 2022-01-28 09:49:03下载
- 积分:1
-
at892051模拟串行通讯程序
at892051模拟串行通讯程序-at892051 simulated serial communication program
- 2022-01-31 19:49:14下载
- 积分:1
-
Fortran插值程序
Fortran插值程序,共有8个。
包括拉格朗日插值,spline插值,抛物线插值等。初学者必备。
- 2022-03-17 07:04:45下载
- 积分:1
-
两个数相乘的汇编源码
微机原理课程设计
差不多就是学汇编...
两个数相乘的汇编源码
微机原理课程设计
差不多就是学汇编-Multiplied by the number two source of the compilation of curriculum design principles of computer science is almost a compilation
- 2022-03-19 07:50:38下载
- 积分:1
-
intel汇编的程序教程
intel汇编的程序教程-compilation of procedural manuals
- 2022-03-13 07:56:54下载
- 积分:1
-
哈弗曼编码的实现,本人亲测完美运行。
编码内容:假设用于通信的电文仅由8个字母组成,字母在电文中出现的频率分别为7,19,2,6,32,3,21,10。试为...
哈弗曼编码的实现,本人亲测完美运行。
编码内容:假设用于通信的电文仅由8个字母组成,字母在电文中出现的频率分别为7,19,2,6,32,3,21,10。试为这8个字母设计哈夫曼编码。
要求:这8个字母任意,输出各字母的编码值。
-huffman Tree
- 2022-05-10 19:04:03下载
- 积分:1