没有合适的资源?快使用搜索试试~ 我知道了~
选择不同类型的数据类型,完成数组数据的排序操作,排序分别为单向冒泡排序,双向冒泡排序和快速排序。
资源推荐
资源详情
资源评论
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
const int N=100;
using namespace std;
template<class Type>
class Sort{
public:
Sort<Type>(){s=NULL;}
Sort<Type>(Type *a, int n)
{
s = new Type[n];
for(int i=0;i<n;i++)
s[i] = a[i];
}
void Intput(Type *s, int n);
void Output(Type *s, int n);
void BubbleSort(Type *s, int n);
void BubbleSort1(Type *s, int n);
void QuickSort(Type *s,int left,int right);
private:
Type *s;
};
//获取数组长度
int Length()
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
const int N=100;
using namespace std;
template<class Type>
class Sort{
public:
Sort<Type>(){s=NULL;}
Sort<Type>(Type *a, int n)
{
s = new Type[n];
for(int i=0;i<n;i++)
s[i] = a[i];
}
void Intput(Type *s, int n);
void Output(Type *s, int n);
void BubbleSort(Type *s, int n);
void BubbleSort1(Type *s, int n);
void QuickSort(Type *s,int left,int right);
private:
Type *s;
};
//获取数组长度
int Length()
{
int num=0;
cout<<"请输入数组长度:";
cin>>num;
return num;
}
//输入函数
template<class Type>
void Sort<Type>::Intput(Type *s, int n)
{
cout<<"请输入数组元素:"<<endl;
for (int i=0; i<n; i++)
cin>>s[i];
}
//输出函数
template<class Type>
void Sort<Type>::Output(Type *s, int n)
{
int i;
cout<<"排序后的数组为:"<<endl;
for (i=0;i<n;i++)
cout<<s[i]<<" ";
cout<<endl;
}
template<class Type>
void swap(Type *a, Type *b)
{
Type temp = *a;
int num=0;
cout<<"请输入数组长度:";
cin>>num;
return num;
}
//输入函数
template<class Type>
void Sort<Type>::Intput(Type *s, int n)
{
cout<<"请输入数组元素:"<<endl;
for (int i=0; i<n; i++)
cin>>s[i];
}
//输出函数
template<class Type>
void Sort<Type>::Output(Type *s, int n)
{
int i;
cout<<"排序后的数组为:"<<endl;
for (i=0;i<n;i++)
cout<<s[i]<<" ";
cout<<endl;
}
template<class Type>
void swap(Type *a, Type *b)
{
Type temp = *a;
剩余6页未读,继续阅读
资源评论
子建莫敌
- 粉丝: 1440
- 资源: 38
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功