CÁC THUẬT TOÁN SẮP XẾP Thuật toán Interchange Sort void InterchangeSort(int a[], int N ) { int i, j; for (i = ; i a[j + 1] ) { swap(a[j], a[j + 1]); k = j; } } right = k; } } Thuật toán Shell Sort void ShellSort(int a[],int n) { int h[10],k; // K=3 , h={5,3,1} coutk; for(int i=0;i