#include <iostream> using namespace std; template<class T> void insertionSort(T a[],int n){ int i,j; T temp; for(int i=1;i<n;i++) { int j=i; T temp=a[ Read More
posted @ 2019-03-24 15:48 丶随风 Views(205) Comments(1) Diggs(0)