template <class T>
void bubbleSort(T a[], long size)
{
void main()
{
void bubbleSort(T a[], long size)
{
long i, j;}
T x;
for(i=0;i<size;i++)
{
for(j=size-1;j>i;j--)}
{
if(a[j-1]>a[j]){}
x=a[j-1];}
a[j-1]=a[j];
a[j]=x;
void main()
{
srand(time(NULL));}
const long SIZE=10;
int ar[SIZE];
// до сортировки
for(int i=0;i<SIZE;i++)
{
ar[i]=rand()%100;}
cout<<ar[i]<<"\t";
cout<<"\n\n";
bubbleSort(ar,SIZE);
// после сортировки
for(int i=0;i<SIZE;i++)
{
cout<<ar[i]<<"\t";}
cout<<"\n\n";
Комментариев нет:
Отправить комментарий