-
单源最短路径问题
单源最短路径问题-single source shortest path problem
- 2023-01-05 19:20:03下载
- 积分:1
-
各种不同排序方法的比较
各种不同排序方法的比较-various methods of sorting
- 2022-01-26 04:21:30下载
- 积分:1
-
app_16x4_sed1335_t6963_lcd_demo
app_16x4_SED1335_T6963_LCD_demo
- 2022-01-24 17:10:56下载
- 积分:1
-
calulating routine for frequence , which is based on both calulating routine for...
基于PIC嵌入式系统的频率计算程序和电路的频率计算程序
- 2022-04-11 18:56:35下载
- 积分:1
-
许多专家推荐汇编语言编程指南书!!非
诸多高手推荐的汇编语言编程指导书!!非“汇编语言编程艺术”-Many experts recommend the assembly language programming guide book! ! Non-
- 2022-02-01 12:41:35下载
- 积分:1
-
ch451显示和四位共阴极数码管1234
ch451显示和四位共阴极数码管1234-ch451 four common cathode display and digital tube 1234
- 2023-01-21 10:15:04下载
- 积分:1
-
TIC24xdsp信号发生器库,解压后安装,含正弦波发生器
TIC24xdsp信号发生器库,解压后安装,含正弦波发生器-TIC24xdsp the signal generator, installed after extract containing sine wave generator
- 2023-08-01 21:45:11下载
- 积分:1
-
在网上找了好长时间DS12887的汇编程序,发现这方面的资料太少,所以现在将这个DS12887时钟芯片的汇编程序发出来,以供大家参考。...
在网上找了好长时间DS12887的汇编程序,发现这方面的资料太少,所以现在将这个DS12887时钟芯片的汇编程序发出来,以供大家参考。-DS12887
- 2022-11-28 18:20:08下载
- 积分:1
-
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60...
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。 1.程序分析:(a>b)?a:b这是条件运算符的基本例子。-Title: the use of nested conditional operator to complete this question: academic> = 90 points with A classmate said that 60-89 between the use of B said that the 60 points or less with C said. 1. Program analysis: (a> b)? A: b This is a conditional operator s basic example.
- 2022-03-15 13:45:59下载
- 积分: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