1// template <class t>
2// void bubble <t>::sort(int n)
3template < typename T > void bubble_sort( T a[], int n )
4{
5 int i,j;
6 //t temp;
7 T temp ;
8 for(i=0; i<n; i++)
9 {
10 for(j=i+1; j<n; j++)
11 {
12 if(a[i]>a[j]) //bubble sort algo
13 {
14 temp=a[i];
15 a[i]=a[j];
16 a[j]=temp;
17 }
18 }
19 }
20}
21