/*
Author:Albert Tesla Wizard
Time:2020/11/22 17:45
*/
#include<bits/stdc++.h>
#define MAXSIZE 1000
using namespace std;
struct Sqlist
{
int* elem;
int length;
};
int create(Sqlist&L,int a[],int n)
{
L.elem=new int[MAXSIZE];
L.length=0;
for(int i=0;i<n;i++){
L.elem[i+1]=a[i];L.length++;}
}
void print(Sqlist L)
{
for
顺序表实现快速排序算法
最新推荐文章于 2022-10-08 13:57:21 发布

最低0.47元/天 解锁文章
5376

被折叠的 条评论
为什么被折叠?



