-
单源最短路径问题
单源最短路径问题-single source shortest path problem
- 2023-01-05 19:20:03下载
- 积分:1
-
8086下的求一个序列的波峰波谷值的程序。 可以任意输入序列,显示波峰波谷值和相对位置。
8086下的求一个序列的波峰波谷值的程序。 可以任意输入序列,显示波峰波谷值和相对位置。-under 8,086 for a sequence of the troughs trough values procedures. Can arbitrary input sequence, showing peaks and trough values relative position.
- 2022-08-08 22:45:08下载
- 积分:1
-
实现账号输入时信息,输入账号和密码,图形显示
实现账号输入时信息,输入账号和密码,图形显示-Input to achieve account information, enter the account number and password, and graphical display
- 2022-05-01 02:26:03下载
- 积分:1
-
Tool
学汇编的时候用到的编译和链接的工具!主要是masm和link,在windows平台下面使用!(School assembly, when used to compile and link the tool! Mainly masm and link, use the following in windows platform!)
- 2011-05-30 14:52:24下载
- 积分:1
-
IO BIOS资源下载
io bios ziyuan xia zai -io bios ziyuan xia zai
- 2022-08-10 21:01:19下载
- 积分:1
-
This is a AT89C51 experimental development board to the PC serial port to send o...
这是一个AT89C51单片机实验开发板向PC机的串口单向发送数据AF的演示程序-This is a AT89C51 experimental development board to the PC serial port to send one-way data AF Speech showing procedures
- 2022-07-28 00:22:53下载
- 积分:1
-
AVR汇编百例,从别人出弄来,希望对大家有所帮助
AVR汇编百例,从别人出弄来,希望对大家有所帮助-Compilation of 100 cases of AVR, get out from others, and they hope to help everyone
- 2022-08-07 08:57:19下载
- 积分:1
-
microchip单片机pic18f202的一段源代码,适合做电源控制
microchip单片机pic18f202的一段源代码,适合做电源控制-microchip microcontroller pic18f202 section of the source code, suitable for power control
- 2022-03-21 12:53:07下载
- 积分:1
-
its about office management system which tells how thing can be managed
its about office management system which tells how thing can be managed
- 2022-07-05 02:29:13下载
- 积分: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