登录
首页 » 汇编语言 » #include <iostream> #include <stack> #define MAX_SIZE...

#include <iostream> #include <stack> #define MAX_SIZE...

于 2022-05-08 发布 文件大小:835.00 B
0 63
下载积分: 2 下载次数: 1

代码说明:

非递归的快速排序算法-#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]

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 696518资源总数
  • 104226会员总数
  • 29今日下载